latch count down in wrong place

This commit is contained in:
Jonas Partner
2008-11-02 16:31:46 +00:00
parent f92a0036c9
commit bbfdf3bcf8

View File

@@ -66,8 +66,8 @@ public class RunnableProxyingMethodInterceptorTests {
List<Throwable> throwables = new ArrayList<Throwable>();
public void handle(Throwable t) {
latch.countDown();
throwables.add(t);
latch.countDown();
}
}