mirror of https://github.com/adamdruppe/arsd.git
jni fix "module" as package name
This commit is contained in:
parent
46f1100c63
commit
17605b3f18
1
jni.d
1
jni.d
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue