--- jsr166/src/test/tck/ForkJoinPool8Test.java 2013/07/21 22:24:18 1.11 +++ jsr166/src/test/tck/ForkJoinPool8Test.java 2013/07/22 15:55:43 1.12 @@ -1488,7 +1488,7 @@ public class ForkJoinPool8Test extends J /** * awaitQuiescent by a worker is equivalent in effect to * ForkJoinTask.helpQuiesce() - */ + */ public void testAwaitQuiescent1() throws Exception { final ForkJoinPool p = new ForkJoinPool(); try { @@ -1513,8 +1513,8 @@ public class ForkJoinPool8Test extends J assertEquals(0, ForkJoinTask.getQueuedTaskCount()); try { assertEquals(21, f.result); - } catch (Throwable fail) { - threadFail(fail.getMessage()); + } catch (Throwable fail) { + threadFail(fail.getMessage()); } } }; @@ -1541,11 +1541,11 @@ public class ForkJoinPool8Test extends J joinPool(p); } } - + /** * awaitQuiescent returns when pool isQuiescent() or the indicated * timeout elapse - */ + */ public void testAwaitQuiescent2() throws Exception { final ForkJoinPool p = new ForkJoinPool(); try { @@ -1597,5 +1597,4 @@ public class ForkJoinPool8Test extends J } } - }