diff --git a/org.springframework.context.support/src/test/java/org/springframework/scheduling/quartz/QuartzSchedulerLifecycleTests.java b/org.springframework.context.support/src/test/java/org/springframework/scheduling/quartz/QuartzSchedulerLifecycleTests.java index 6c3b0b9ca2..374a2e81d8 100644 --- a/org.springframework.context.support/src/test/java/org/springframework/scheduling/quartz/QuartzSchedulerLifecycleTests.java +++ b/org.springframework.context.support/src/test/java/org/springframework/scheduling/quartz/QuartzSchedulerLifecycleTests.java @@ -39,7 +39,6 @@ public class QuartzSchedulerLifecycleTests { sw.start("lazyScheduler"); context.destroy(); sw.stop(); - System.out.println(sw.getTotalTimeMillis()); assertTrue("Quartz Scheduler with lazy-init is hanging on destruction: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 500); } @@ -52,7 +51,6 @@ public class QuartzSchedulerLifecycleTests { sw.start("lazyScheduler"); context.destroy(); sw.stop(); - System.out.println(sw.getTotalTimeMillis()); assertTrue("Quartz Scheduler with lazy-init is hanging on destruction: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 500); }