Skip to content

Commit

Permalink
Add support for InvocationContext.getInterceptorBindings()
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek committed Sep 1, 2023
1 parent b57d3e9 commit e059f43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,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
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -90,7 +90,7 @@
<shrinkwrap.descriptors.version>2.0.0</shrinkwrap.descriptors.version>
<shrinkwrap.resolver.version>3.1.4</shrinkwrap.resolver.version>
<testng.version>7.4.0</testng.version>
<weld.api.version>5.0.SP3</weld.api.version>
<weld.api.version>5.0-SNAPSHOT</weld.api.version>
<weld.logging.tools.version>1.0.3.Final</weld.logging.tools.version>
<wildfly.arquillian.version>5.0.0.Alpha5</wildfly.arquillian.version>
</properties>
Expand Down

0 comments on commit e059f43

Please sign in to comment.