use of org.apache.maven.scm.provider.jazz.command.unedit.JazzUnEditCommand in project maven-scm by apache.
the class JazzScmProvider method unedit.
/**
* {@inheritDoc}
*/
protected UnEditScmResult unedit(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
getLogger().debug("JazzScmProvider:unedit()");
JazzUnEditCommand command = new JazzUnEditCommand();
command.setLogger(getLogger());
return (UnEditScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations