Skip to content

Commit

Permalink
remove unused func
Browse files Browse the repository at this point in the history
  • Loading branch information
nginthfs committed Sep 12, 2024
1 parent ec8ca8e commit 23cfc55
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,15 +368,6 @@ private void addToActiveFiles(String name) {
activeFiles.put(name, true);
}

private String pickFromActiveSet(int index, String prefix) {
List<String> l =
activeFiles.keySet().stream()
.filter(s -> s.startsWith(prefix))
.collect(Collectors.toList());
assertTrue(l.size() > index);
return l.get(index);
}

private void addToDeletedFiles(String name) {
deletedFiles.put(name, true);
}
Expand Down

0 comments on commit 23cfc55

Please sign in to comment.