fix bug in paging of svn log command

This commit is contained in:
Sebastian Sdorra
2012-06-16 13:11:39 +02:00
parent 4a5fd4fb8c
commit fce9770493

View File

@@ -206,7 +206,7 @@ public class SvnLogCommand extends AbstractSvnCommand implements LogCommand
int total = changesetList.size();
int start = request.getPagingStart();
int max = request.getPagingLimit();
int max = request.getPagingLimit() + start;
int end = total - start;
if (end > max)