You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/08/05 08:10:50 UTC

svn commit: r1755254 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java

Author: lofwyr
Date: Fri Aug  5 08:10:50 2016
New Revision: 1755254

URL: http://svn.apache.org/viewvc?rev=1755254&view=rev
Log:
TOBAGO-1582 - Converter for class String will not used

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java?rev=1755254&r1=1755253&r2=1755254&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java Fri Aug  5 08:10:50 2016
@@ -829,7 +829,7 @@ public final class ComponentUtils {
         if (converterType == null) {
           converterType = value.getClass();
         }
-        if (converterType != null && converterType != String.class && converterType != Object.class) {
+        if (converterType != null && converterType != Object.class) {
           converter = facesContext.getApplication().createConverter(converterType);
         }
       }