This is an automated email from the ASF dual-hosted git repository.

struberg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit b8f40e0eb4ab5ac5297b2fa4d6c67bd78880dc33
Author: Mark Struberg <[email protected]>
AuthorDate: Sat Feb 27 09:37:29 2021 +0100

    TOMEE-2972 isNullable got removed with CDI-2.0
    
    And we finally also removed that parameter from the OWB ct.
    No functional change.
---
 .../openejb-core/src/main/java/org/apache/openejb/cdi/CdiEjbBean.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/container/openejb-core/src/main/java/org/apache/openejb/cdi/CdiEjbBean.java 
b/container/openejb-core/src/main/java/org/apache/openejb/cdi/CdiEjbBean.java
index e678c87..a67c5a4 100644
--- 
a/container/openejb-core/src/main/java/org/apache/openejb/cdi/CdiEjbBean.java
+++ 
b/container/openejb-core/src/main/java/org/apache/openejb/cdi/CdiEjbBean.java
@@ -325,7 +325,7 @@ public class CdiEjbBean<T> extends BaseEjbBean<T> 
implements InterceptedMarker,
         private final Set<Type> ejbTypes;
 
         public EJBBeanAttributesImpl(final BeanContext bc, final 
BeanAttributes<T> beanAttributes) {
-            super(beanAttributes, false);
+            super(beanAttributes);
             this.beanContext = bc;
             this.ejbTypes = new HashSet<>();
             initTypes();

Reply via email to