From c4a2277f6bae2b3b346a6707c1de651e27894aef Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 6 Dec 2022 22:20:06 -0500 Subject: [PATCH] doc wrong --- jni.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jni.d b/jni.d index 7736b59..6161366 100644 --- a/jni.d +++ b/jni.d @@ -257,7 +257,7 @@ interface CharSequence : JavaInterface!("java.lang", CharSequence) { string whatever(); } - final class Foo : IFoo, JavaClass!("com.example", Foo) { + final class Foo : JavaClass!("com.example", Foo), IFoo { // need to tell D that the implementation exists, just in Java. // (This actually generates the D implementation that just forwards to the existing java method) @Import string whatever();