You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2013/09/05 07:35:12 UTC

svn commit: r1520221 - /tomee/tomee/trunk/container/openejb-core/src/main/java/org/apache/openejb/cdi/WebAppInjectionResolver.java

Author: rmannibucau
Date: Thu Sep  5 05:35:12 2013
New Revision: 1520221

URL: http://svn.apache.org/r1520221
Log:
new owb api

Modified:
    tomee/tomee/trunk/container/openejb-core/src/main/java/org/apache/openejb/cdi/WebAppInjectionResolver.java

Modified: tomee/tomee/trunk/container/openejb-core/src/main/java/org/apache/openejb/cdi/WebAppInjectionResolver.java
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/container/openejb-core/src/main/java/org/apache/openejb/cdi/WebAppInjectionResolver.java?rev=1520221&r1=1520220&r2=1520221&view=diff
==============================================================================
--- tomee/tomee/trunk/container/openejb-core/src/main/java/org/apache/openejb/cdi/WebAppInjectionResolver.java (original)
+++ tomee/tomee/trunk/container/openejb-core/src/main/java/org/apache/openejb/cdi/WebAppInjectionResolver.java Thu Sep  5 05:35:12 2013
@@ -32,10 +32,10 @@ public class WebAppInjectionResolver ext
     }
 
     @Override
-    public Set<Bean<?>> implResolveByType(final Type injectionPointType, final Class<?> injectinPointClass, final Annotation... qualifiers) {
-        final Set<Bean<?>> set = super.implResolveByType(injectionPointType, injectinPointClass, qualifiers);
+    public Set<Bean<?>> implResolveByType(final boolean delegate, final Type injectionPointType, final Class<?> injectinPointClass, final Annotation... qualifiers) {
+        final Set<Bean<?>> set = super.implResolveByType(delegate, injectionPointType, injectinPointClass, qualifiers);
         if (set.isEmpty()) {
-            return context.getParent().getBeanManagerImpl().getInjectionResolver().implResolveByType(injectionPointType, injectinPointClass, qualifiers);
+            return context.getParent().getBeanManagerImpl().getInjectionResolver().implResolveByType(delegate, injectionPointType, injectinPointClass, qualifiers);
         }
         return set;
     }