3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-14 19:25:51 +00:00

Utils: Remove outdated comment.

This commit is contained in:
Andreas Schildbach 2018-02-22 10:09:10 +01:00
parent e42e6686cc
commit 2b765d8aa8

View File

@ -587,7 +587,6 @@ public class Utils {
}
public static int maxOfMostFreq(int... items) {
// Java 6 sucks.
ArrayList<Integer> list = new ArrayList<>(items.length);
for (int item : items) list.add(item);
return maxOfMostFreq(list);