Skip to content

Commit 8fc8ddc

Browse files
author
Vladimir Kotal
committed
revert List.copyOf()
it does not work with lists containing null elements
1 parent 2109048 commit 8fc8ddc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/BoundaryChangesets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public synchronized List<String> getBoundaryChangesetIDs(String sinceRevision) t
8282
String.format("done getting boundary changesets for ''%s'' (%d entries)",
8383
repository.getDirectoryName(), result.size()));
8484

85-
return List.copyOf(result);
85+
return result;
8686
}
8787

8888
private void visit(String id) {

0 commit comments

Comments
 (0)