Skip to content

Commit

Permalink
WELD-2756 Add support for InvocationContext.getInterceptorBindings()
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek authored and manovotn committed Oct 25, 2023
1 parent 6c82f5b commit 44c5c66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected AbstractInvocationContext(Object target, Method method, Method proceed
this.parameters = parameters;
this.timer = timer;
this.contextData = contextData;
this.interceptorBindings = interceptorBindings;
this.interceptorBindings = interceptorBindings != null ? interceptorBindings : Collections.emptySet();
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<arquillian.jetty.version>1.0.0.Final</arquillian.jetty.version>
<atinject.tck.version>2.0.1</atinject.tck.version>
<!-- Version of the CDI 4.x release TCK -->
<cdi.tck-4-0.version>4.0.10</cdi.tck-4-0.version>
<cdi.tck-4-0.version>4.1.0-SNAPSHOT</cdi.tck-4-0.version>
<!-- By default, each mvn profile uses corresponding file from TCK repo, see jboss-tck-runner/pom.xml -->
<!-- We can also use our own file, needed for relaxed mode testing (see WeldMethodInterceptor) -->
<!-- Our variant is under src/test/tck/tck-tests.xml -->
Expand Down

0 comments on commit 44c5c66

Please sign in to comment.