You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by pa...@apache.org on 2018/04/04 14:30:36 UTC

svn commit: r1828350 - /myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/annotation/ManagedProperty.java

Author: paulnicolucci
Date: Wed Apr  4 14:30:36 2018
New Revision: 1828350

URL: http://svn.apache.org/viewvc?rev=1828350&view=rev
Log:
MYFACES-4217: ManagedProperty.value should not have a default value

Modified:
    myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/annotation/ManagedProperty.java

Modified: myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/annotation/ManagedProperty.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/annotation/ManagedProperty.java?rev=1828350&r1=1828349&r2=1828350&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/annotation/ManagedProperty.java (original)
+++ myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/annotation/ManagedProperty.java Wed Apr  4 14:30:36 2018
@@ -33,5 +33,5 @@ import javax.inject.Qualifier;
 @Retention(value=RetentionPolicy.RUNTIME)
 public @interface ManagedProperty
 {
-    public String value() default "";
+    public String value();
 }