fixed NPE on latch in test

This commit is contained in:
Mark Fisher
2009-06-06 01:37:15 +00:00
parent 044cc965c4
commit 6dd2ce940f

View File

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