fix another svn paging bug

This commit is contained in:
Sebastian Sdorra
2012-06-16 14:11:36 +02:00
parent bf86dc97e7
commit c5789e8691

View File

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