Skip to content

Commit

Permalink
Fix, Don't add prefix to teavm class name
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Aug 31, 2024
1 parent 53a8869 commit a69d5de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public void onIDLConstructorGenerated(JParser jParser, IDLConstructor idlConstru

IDLClass idlClass = idlConstructor.idlClass;

String className = idlClass.getName();
String className = idlClass.name; // teavm class cannot have prefix.
MethodCallExpr caller = new MethodCallExpr();
caller.setName(className);

Expand Down

0 comments on commit a69d5de

Please sign in to comment.