You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by me...@apache.org on 2023/01/22 16:59:50 UTC

[myfaces] branch 2.3-next updated: MYFACES-4548 2.3-next org.apache.myfaces.USE_LAMBDA_METAFACTORY default false (#496)

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

melloware pushed a commit to branch 2.3-next
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/2.3-next by this push:
     new 8910117ef MYFACES-4548 2.3-next org.apache.myfaces.USE_LAMBDA_METAFACTORY default false (#496)
8910117ef is described below

commit 8910117ef06e5b227cd22e86d7c67704ef6d1234
Author: Melloware <me...@gmail.com>
AuthorDate: Sun Jan 22 11:59:45 2023 -0500

    MYFACES-4548 2.3-next org.apache.myfaces.USE_LAMBDA_METAFACTORY default false (#496)
---
 .../apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/src/main/java/org/apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java b/api/src/main/java/org/apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java
index a38b0e566..383570d27 100644
--- a/api/src/main/java/org/apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java
+++ b/api/src/main/java/org/apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java
@@ -49,7 +49,7 @@ public class PropertyDescriptorUtils
     /**
      * Defines if Lambda expressions (via LambdaMetafactory) are used for getter/setter instead of Reflection.
      */
-    @JSFWebConfigParam(since="2.3-next", defaultValue="true", expectedValues="true,false", tags="performance")
+    @JSFWebConfigParam(since="2.3-next", defaultValue="false", expectedValues="true,false", tags="performance")
     public static final String USE_LAMBDA_METAFACTORY = "org.apache.myfaces.USE_LAMBDA_METAFACTORY";
 
     private static final String CACHE_KEY = PropertyDescriptorUtils.class.getName() + ".CACHE";