fix bug in getChangesets method of repository resource

This commit is contained in:
Sebastian Sdorra
2011-11-14 16:14:54 +01:00
parent 5d2fbce9b5
commit b37beeadbc

View File

@@ -448,7 +448,7 @@ public class RepositoryResource
{
ChangesetPagingResult changesets = null;
if (Util.isNotEmpty(path))
if (Util.isEmpty(path))
{
changesets = changesetViewerUtil.getChangesets(id, start, limit);
}