--- jsr166/src/test/tck/ThreadLocalTest.java 2004/01/10 20:37:20 1.5 +++ jsr166/src/test/tck/ThreadLocalTest.java 2009/07/31 23:37:31 1.6 @@ -78,7 +78,7 @@ public class ThreadLocalTest extends JSR if (child != null) { // Wait for child (if any) try { child.join(); - } catch(InterruptedException e) { + } catch (InterruptedException e) { threadUnexpectedException(); } } @@ -95,12 +95,11 @@ public class ThreadLocalTest extends JSR try { progenitor.start(); progenitor.join(); - for(int i = 0; i < threadCount; i++) { + for (int i = 0; i < threadCount; i++) { assertEquals(i, x[i]); } - } catch(InterruptedException e) { + } catch (InterruptedException e) { unexpectedException(); } } } -