mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-10 17:26:28 +01:00
Utils: Remove outdated comment.
This commit is contained in:
parent
e42e6686cc
commit
2b765d8aa8
1 changed files with 0 additions and 1 deletions
|
@ -587,7 +587,6 @@ public class Utils {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int maxOfMostFreq(int... items) {
|
public static int maxOfMostFreq(int... items) {
|
||||||
// Java 6 sucks.
|
|
||||||
ArrayList<Integer> list = new ArrayList<>(items.length);
|
ArrayList<Integer> list = new ArrayList<>(items.length);
|
||||||
for (int item : items) list.add(item);
|
for (int item : items) list.add(item);
|
||||||
return maxOfMostFreq(list);
|
return maxOfMostFreq(list);
|
||||||
|
|
Loading…
Add table
Reference in a new issue