*/
public ChangeLogScmResult changeLog( ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate,
int numDays, String branch, String datePattern )
throws ScmException
{
ScmBranch scmBranch = null;
if ( StringUtils.isNotEmpty( branch ) )
{
scmBranch = new ScmBranch( branch );
}
return changeLog( repository, fileSet, startDate, endDate, numDays, scmBranch, null );
}