jni fix "module" as package name

This commit is contained in:
John Colvin 2023-03-02 14:55:57 +00:00 committed by GitHub
parent 46f1100c63
commit 17605b3f18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

1
jni.d
View File

@ -359,6 +359,7 @@ private inout(char)[] fixupKeywordsInJavaPackageName(inout(char)[] s) {
s ~= "."; // lol i suck
s = s.replace(".function.", ".function_.");
s = s.replace(".ref.", ".ref_.");
s = s.replace(".module.", ".module_.");
return s[0 .. $-1]; // god i am such a bad programmer
}