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/01/21 20:22:44 UTC

svn commit: r1821812 - /myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/component/UISelectOne.java

Author: paulnicolucci
Date: Sun Jan 21 20:22:44 2018
New Revision: 1821812

URL: http://svn.apache.org/viewvc?rev=1821812&view=rev
Log:
MYFACES-4192: call super.processValidators

Modified:
    myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/component/UISelectOne.java

Modified: myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/component/UISelectOne.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/component/UISelectOne.java?rev=1821812&r1=1821811&r2=1821812&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/component/UISelectOne.java (original)
+++ myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/component/UISelectOne.java Sun Jan 21 20:22:44 2018
@@ -113,10 +113,8 @@ public class UISelectOne extends UIInput
                 }
             });
         }
-        if (!isEmpty(submittedValue))
-        {
-            super.processValidators(context);
-        }
+        
+        super.processValidators(context);
     }
 
     /**