Internally replace '.' with '_' in action names.

This commit is contained in:
hns 2003-06-25 15:14:24 +00:00
parent b98f8b6751
commit 5618ac1b4e

View file

@ -41,7 +41,7 @@ public class RhinoActionAdapter {
*/ */
public RhinoActionAdapter(ActionFile action) { public RhinoActionAdapter(ActionFile action) {
String content = action.getContent(); String content = action.getContent();
String functionName = action.getFunctionName(); String functionName = action.getFunctionName().replace('.', '_');
sourceName = action.toString(); sourceName = action.toString();
function = composeFunction(functionName, function = composeFunction(functionName,