X Tutup
Skip to content

Commit ebbf25c

Browse files
Set project JDK to 17
1 parent d85852d commit ebbf25c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ plugins {
22
id 'java'
33
}
44

5+
java {
6+
toolchain {
7+
languageVersion.set(JavaLanguageVersion.of(17))
8+
}
9+
}
10+
511
group 'com.basic4gl'
612
version '1.0-SNAPSHOT'
713

library/src/main/java/com/basic4gl/library/desktopgl/GLTextGridWindow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public void activate() {
303303
}
304304

305305
@Override
306-
public void start(DebuggerCallbacks _) {
306+
public void start(DebuggerCallbacks callbacks) {
307307
mThread = new Thread(new VMThread(mDebugger));
308308
// TODO thread.start() has issues with initializing GL stuff off the main thread
309309
mThread.run();

0 commit comments

Comments
 (0)
X Tutup