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