Skip to content

Commit

Permalink
more compilation errors fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lprimak committed May 2, 2024
1 parent 1d320d1 commit 9d6fbbd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public final class MessageBeanContainer extends BaseContainer implements Message
messageBeanClient_ = clientFactory.createMessageBeanClient(msgBeanDesc);

componentInvocation = createComponentInvocation();
componentInvocation.container = this;
componentInvocation.setContainer(this);
invocationManager.preInvoke(componentInvocation);
messageBeanClient_.setup(this);

Expand Down Expand Up @@ -1135,7 +1135,7 @@ public void beforeMessageDelivery(Method method, MessageDeliveryType deliveryTyp
invocation.context = context;
invocation.instance = context.getEJB();
invocation.ejb = context.getEJB();
invocation.container = this;
invocation.setContainer(this);

// Message Bean Container only starts a new transaction if
// there is no imported transaction and the message listener
Expand Down

0 comments on commit 9d6fbbd

Please sign in to comment.