Skip to content

Commit

Permalink
add note
Browse files Browse the repository at this point in the history
  • Loading branch information
kevlahnota authored Nov 11, 2024
1 parent 1dc5c58 commit d7fd20e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions forge-core/src/main/java/forge/StaticData.java
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,7 @@ public Pair<Integer, Integer> audit(StringBuffer noImageFound, StringBuffer card
CompletableFuture.allOf(futuresArray).join();
futures.clear();
}
// stream().toList() causes crash on Android, use Collectors.toList()
List<String> NIF = new ArrayList<>(NIF_Q).stream().sorted().collect(Collectors.toList());
List<String> CNI = new ArrayList<>(CNI_Q).stream().sorted().collect(Collectors.toList());
List<String> TOK = new ArrayList<>(TOKEN_Q).stream().sorted().collect(Collectors.toList());
Expand Down

0 comments on commit d7fd20e

Please sign in to comment.