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