use of org.apache.maven.scm.provider.integrity.command.unedit.IntegrityUnEditCommand in project maven-scm by apache.
the class IntegrityScmProvider method unedit.
/**
* Maps to si revert
*/
@Override
protected UnEditScmResult unedit(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
IntegrityUnEditCommand command = new IntegrityUnEditCommand();
command.setLogger(getLogger());
return (UnEditScmResult) command.execute(repository, fileSet, params);
}
Aggregations