Details
Description
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