Merge pull request #382 from DannyArends/master

Fix for issue #380
This commit is contained in:
Adam D. Ruppe 2023-04-18 11:16:51 -04:00 committed by GitHub
commit 26526a1acc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
jni.d
View File

@ -1696,7 +1696,7 @@ private mixin template JavaImportImpl(T, alias method, size_t overloadIndex) {
static if(__traits(identifier, method) == "__ctor")
pragma(mangle, method.mangleof)
private static T implementation(Parameters!method args, T this_) {
private static T implementation(T this_, Parameters!method args) {
auto env = activeEnv;
if(env is null)
throw new Exception("JNI not active in this thread");