Internally replace '.' with '_' in action names.
This commit is contained in:
parent
b98f8b6751
commit
5618ac1b4e
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue