--- jsr166/src/test/loops/ScalarLongSort.java 2011/08/19 11:25:04 1.9 +++ jsr166/src/test/loops/ScalarLongSort.java 2011/10/10 16:59:04 1.10 @@ -13,7 +13,7 @@ class ScalarLongSort { static int THRESHOLD = -1; static final boolean warmup = true; - public static void main (String[] args) throws Exception { + public static void main(String[] args) throws Exception { int procs = 0; int n = 1 << 22; int reps = 20; @@ -209,7 +209,7 @@ class ScalarLongSort { } - static void checkSorted (long[] a) { + static void checkSorted(long[] a) { int n = a.length; for (int i = 0; i < n - 1; i++) { if (a[i] > a[i+1]) {