fix not serializable cache exception

This commit is contained in:
Sebastian Sdorra
2012-06-26 21:29:14 +02:00
parent 04939d5a4d
commit 758202568c

View File

@@ -211,7 +211,7 @@ public class SvnLogCommand extends AbstractSvnCommand implements LogCommand
start = 0;
}
changesetList = changesetList.subList(start, end);
changesetList = Lists.newArrayList(changesetList.subList(start, end));
changesets = new ChangesetPagingResult(total, changesetList);
}
catch (NumberFormatException ex)