--- jsr166/src/test/tck/ScheduledExecutorSubclassTest.java 2010/10/09 18:40:41 1.13 +++ jsr166/src/test/tck/ScheduledExecutorSubclassTest.java 2010/10/09 19:30:35 1.14 @@ -107,7 +107,7 @@ public class ScheduledExecutorSubclassTe } /** - * delayed schedule of runnable successfully executes after delay + * delayed schedule of runnable successfully executes after delay */ public void testSchedule3() throws InterruptedException { TrackedShortRunnable runnable = new TrackedShortRunnable(); @@ -264,7 +264,7 @@ public class ScheduledExecutorSubclassTe } /** - * scheduleAtFixedRate throws RejectedExecutionException if shutdown + * scheduleAtFixedRate throws RejectedExecutionException if shutdown */ public void testScheduleAtFixedRate1_RejectedExecutionException() { CustomExecutor se = new CustomExecutor(1); @@ -296,8 +296,8 @@ public class ScheduledExecutorSubclassTe } /** - * getActiveCount increases but doesn't overestimate, when a - * thread becomes active + * getActiveCount increases but doesn't overestimate, when a + * thread becomes active */ public void testGetActiveCount() throws InterruptedException { CustomExecutor p2 = new CustomExecutor(2); @@ -309,8 +309,8 @@ public class ScheduledExecutorSubclassTe } /** - * getCompletedTaskCount increases, but doesn't overestimate, - * when tasks complete + * getCompletedTaskCount increases, but doesn't overestimate, + * when tasks complete */ public void testGetCompletedTaskCount() throws InterruptedException { CustomExecutor p2 = new CustomExecutor(2); @@ -322,7 +322,7 @@ public class ScheduledExecutorSubclassTe } /** - * getCorePoolSize returns size given in constructor if not otherwise set + * getCorePoolSize returns size given in constructor if not otherwise set */ public void testGetCorePoolSize() { CustomExecutor p1 = new CustomExecutor(1); @@ -331,8 +331,8 @@ public class ScheduledExecutorSubclassTe } /** - * getLargestPoolSize increases, but doesn't overestimate, when - * multiple threads active + * getLargestPoolSize increases, but doesn't overestimate, when + * multiple threads active */ public void testGetLargestPoolSize() throws InterruptedException { CustomExecutor p2 = new CustomExecutor(2); @@ -345,8 +345,8 @@ public class ScheduledExecutorSubclassTe } /** - * getPoolSize increases, but doesn't overestimate, when threads - * become active + * getPoolSize increases, but doesn't overestimate, when threads + * become active */ public void testGetPoolSize() { CustomExecutor p1 = new CustomExecutor(1); @@ -357,8 +357,8 @@ public class ScheduledExecutorSubclassTe } /** - * getTaskCount increases, but doesn't overestimate, when tasks - * submitted + * getTaskCount increases, but doesn't overestimate, when tasks + * submitted */ public void testGetTaskCount() throws InterruptedException { CustomExecutor p1 = new CustomExecutor(1); @@ -406,7 +406,7 @@ public class ScheduledExecutorSubclassTe } /** - * is isShutDown is false before shutdown, true after + * isShutDown is false before shutdown, true after */ public void testIsShutdown() { CustomExecutor p1 = new CustomExecutor(1); @@ -421,7 +421,7 @@ public class ScheduledExecutorSubclassTe /** - * isTerminated is false before termination, true after + * isTerminated is false before termination, true after */ public void testIsTerminated() throws InterruptedException { CustomExecutor p1 = new CustomExecutor(1); @@ -435,7 +435,7 @@ public class ScheduledExecutorSubclassTe } /** - * isTerminating is not true when running or when terminated + * isTerminating is not true when running or when terminated */ public void testIsTerminating() throws InterruptedException { CustomExecutor p1 = new CustomExecutor(1); @@ -497,7 +497,7 @@ public class ScheduledExecutorSubclassTe } /** - * purge removes cancelled tasks from the queue + * purge removes cancelled tasks from the queue */ public void testPurge() throws InterruptedException { CustomExecutor p1 = new CustomExecutor(1); @@ -526,7 +526,7 @@ public class ScheduledExecutorSubclassTe } /** - * shutDownNow returns a list containing tasks that were not run + * shutDownNow returns a list containing tasks that were not run */ public void testShutDownNow() { CustomExecutor p1 = new CustomExecutor(1);