use of org.apache.maven.scm.provider.hg.command.update.HgUpdateCommand in project maven-scm by apache.
the class HgScmProvider method update.
/**
* {@inheritDoc}
*/
public UpdateScmResult update(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
HgUpdateCommand command = new HgUpdateCommand();
command.setLogger(getLogger());
return (UpdateScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations