Fix on using method String.replace()
------------------------------------

                 Key: TAPESTRY-1872
                 URL: https://issues.apache.org/jira/browse/TAPESTRY-1872
             Project: Tapestry
          Issue Type: Improvement
          Components: Contrib
    Affects Versions: 4.1.3
         Environment: Websphere App Server 5.1
            Reporter: Joshua Partogi
             Fix For: 4.1.4


One example that cause bugs on using String.replace is located on:

org.apache.tapestry.contrib.table.model.simple.SimpleTableColumn.setDisplayName(String
 displayName) line 161:
displayName = displayName.replace("_", ".");

will cause this exception:
java.lang.String: method 
replace(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String; not 
found
because it uses double quotation so it is assumed as String instead of char.


It should be displayName.replace('_', '.'); 
with single quotation


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to