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