use of org.apache.maven.scm.provider.integrity.command.status.IntegrityStatusCommand in project maven-scm by apache.
the class IntegrityScmProvider method status.
/**
* Maps to si viewsandbox with a filter of locally changed files
*/
@Override
protected StatusScmResult status(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
IntegrityStatusCommand command = new IntegrityStatusCommand();
command.setLogger(getLogger());
return (StatusScmResult) command.execute(repository, fileSet, params);
}
Aggregations