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