mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-06 21:45:43 +01:00
fix not serializable cache exception
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user