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