Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -531,7 +531,7 @@ private static int max(int[] values) {
int max = Integer.MIN_VALUE;

for (int n = 0; n < values.length; n++) {
max = Integer.max(max, values[n]);
max = Math.max(max, values[n]);
}

return max;

0 comments on commit 437fb00

Please sign in to comment.