use of org.apache.maven.scm.provider.tfs.command.TfsUnEditCommand in project maven-scm by apache.
the class TfsScmProvider method unedit.
protected UnEditScmResult unedit(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
TfsUnEditCommand command = new TfsUnEditCommand();
command.setLogger(getLogger());
return (UnEditScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations