[
https://issues.apache.org/jira/browse/TAPESTRY-1872?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12541056
]
Andreas Andreou commented on TAPESTRY-1872:
-------------------------------------------
Both contrib and framework jars should be 1.4 compatible
+ I believe that's also what their problem was (having to use 1.4)
> Fix on using method String.replace()
> ------------------------------------
>
> Key: TAPESTRY-1872
> URL: https://issues.apache.org/jira/browse/TAPESTRY-1872
> Project: Tapestry
> Issue Type: Bug
> Components: Contrib
> Affects Versions: 4.1.3
> Environment: Websphere App Server 5.1
> Reporter: Joshua Partogi
> Assignee: Andreas Andreou
> 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]