fixed NPE on latch in test

master
Mark Fisher 16 years ago
parent 044cc965c4
commit 6dd2ce940f
  1. 2
      org.springframework.context/src/test/java/org/springframework/scheduling/annotation/AsyncAnnotationBeanPostProcessorTests.java

@ -100,7 +100,7 @@ public class AsyncAnnotationBeanPostProcessorTests {
private Thread thread; private Thread thread;
private CountDownLatch latch; private final CountDownLatch latch = new CountDownLatch(1);
public Thread getThread() { public Thread getThread() {
return this.thread; return this.thread;

Loading…
Cancel
Save