Skip to content

Commit

Permalink
WELD-532
Browse files Browse the repository at this point in the history
  • Loading branch information
nickarls committed May 26, 2010
1 parent 32b3978 commit 41ea99e
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -66,7 +66,6 @@
import org.jboss.weld.persistence.PersistenceApiAbstraction;
import org.jboss.weld.servlet.ServletApiAbstraction;
import org.jboss.weld.util.reflection.Reflections;
import org.jboss.weld.util.reflection.instantiation.InstantiatorFactory;
import org.jboss.weld.ws.WSApiAbstraction;
import org.slf4j.cal10n.LocLogger;

Expand Down Expand Up @@ -305,7 +304,7 @@ protected boolean isTypeManagedBeanOrDecoratorOrInterceptor(WeldClass<?> clazz)
!servletApiAbstraction.SERVLET_REQUEST_LISTENER_CLASS.isAssignableFrom(javaClass) &&
!ejbApiAbstraction.ENTERPRISE_BEAN_CLASS.isAssignableFrom(javaClass) &&
!jsfApiAbstraction.UICOMPONENT_CLASS.isAssignableFrom(javaClass) &&
(hasSimpleWebBeanConstructor(clazz) || InstantiatorFactory.useInstantiators());
hasSimpleWebBeanConstructor(clazz);
}

protected boolean isEEResourceProducerField(WeldField<?, ?> field)
Expand Down

0 comments on commit 41ea99e

Please sign in to comment.