--- jsr166/src/test/extra166y/SetOpsDemo.java 2009/11/16 04:16:43 1.2 +++ jsr166/src/test/extra166y/SetOpsDemo.java 2010/09/01 07:28:19 1.3 @@ -16,7 +16,7 @@ class SetOpsDemo { static int reps = 16; static final long maxValue = 1 << 12; - public static void main (String[] args) throws Exception { + public static void main(String[] args) throws Exception { int n = 1 << 20; Long[] a = new Long[n]; ParallelArray pa = ParallelArray.createUsingHandoff(a, fjpool); @@ -293,7 +293,7 @@ class SetOpsDemo { return u; } - static void checkSorted (ParallelArray pa) { + static void checkSorted(ParallelArray pa) { int n = pa.size(); for (int i = 0; i < n - 1; i++) { if (pa.get(i).compareTo(pa.get(i+1)) >= 0) {