Merge branch 'master' of github.com:jamesagnew/hapi-fhir

This commit is contained in:
James Agnew 2019-02-20 15:07:08 -05:00
commit 28b4b812ac
1 changed files with 1 additions and 3 deletions

View File

@ -294,12 +294,10 @@ public class RestHookWithInterceptorR4Test extends BaseSubscriptionsR4Test {
@Hook(Pointcut.SUBSCRIPTION_AFTER_DELIVERY) @Hook(Pointcut.SUBSCRIPTION_AFTER_DELIVERY)
public void afterDelivery(ResourceDeliveryMessage theMessage) { public void afterDelivery(ResourceDeliveryMessage theMessage) {
myFinishedLatch.countDown();
;
Validate.isTrue(myLastDelivery == null); Validate.isTrue(myLastDelivery == null);
myLastDelivery = theMessage; myLastDelivery = theMessage;
myFinishedLatch.countDown();
} }
} }