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