jdk/test/java/util/Collection/HotPotatoes.java
changeset 32649 2ee9017c7597
parent 5506 202f599c92aa
--- a/jdk/test/java/util/Collection/HotPotatoes.java	Wed Sep 16 08:24:40 2015 -0400
+++ b/jdk/test/java/util/Collection/HotPotatoes.java	Tue Sep 15 21:56:04 2015 -0700
@@ -99,7 +99,7 @@
         try {realMain(args);} catch (Throwable t) {unexpected(t);}
         System.out.printf("%nPassed = %d, failed = %d%n%n", passed, failed);
         if (failed > 0) throw new AssertionError("Some tests failed");}
-    private static abstract class CheckedThread extends Thread {
+    private abstract static class CheckedThread extends Thread {
         public abstract void realRun() throws Throwable;
         public void run() {
             try { realRun(); } catch (Throwable t) { unexpected(t); }}}