--- jsr166/src/test/tck/JSR166TestCase.java 2009/08/03 22:08:45 1.36 +++ jsr166/src/test/tck/JSR166TestCase.java 2009/08/04 00:23:18 1.37 @@ -289,13 +289,8 @@ public class JSR166TestCase extends Test * threadFail with message "should throw exception" */ public void threadShouldThrow() { - try { - threadFailed = true; - fail("should throw exception"); - } catch (AssertionFailedError e) { - e.printStackTrace(); - throw e; - } + threadFailed = true; + fail("should throw exception"); } /**