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/23 17:15:22 UTC

[myfaces] branch 2.3-next updated: MYFACES-4548: Fix comment

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 fa04ba260 MYFACES-4548: Fix comment
fa04ba260 is described below

commit fa04ba260cc5d168a2fc1a19e1fec3f473ee149f
Author: Melloware <me...@gmail.com>
AuthorDate: Mon Jan 23 12:15:17 2023 -0500

    MYFACES-4548: Fix comment
---
 .../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 6e9de6812..cd13017ed 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
@@ -100,7 +100,7 @@ public class PropertyDescriptorUtils
             return false;
         }
         
-        // activated per default
+        // disabled per default
         String useMethodHandles = ec.getInitParameter(USE_LAMBDA_METAFACTORY);
         return useMethodHandles != null && useMethodHandles.contains("true");
     }