Skip to content

Commit

Permalink
fix point event
Browse files Browse the repository at this point in the history
  • Loading branch information
nr23730 committed Mar 5, 2024
1 parent 5d386b4 commit 5c98b7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static void processAttributeChildren(String path, String name, Object jso
return;
}
String type = "gen_" + children.item(i).getFirstChild().getTextContent();
type = type.replaceAll("[^A-Za-z_]+", "_");
type = type.replaceAll("[^A-Za-z_]+", "_").replace("POINT_", "");
Method met;
try {
met = Generator.class.getMethod(type, String.class, String.class, Object.class,
Expand Down

0 comments on commit 5c98b7d

Please sign in to comment.