Merge pull request #371 from John-Colvin/patch-1

jni fix "module" as package name
This commit is contained in:
Adam D. Ruppe 2023-03-02 09:57:43 -05:00 committed by GitHub
commit 3e4616636e
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
}