From d96d340590123cef7c5b3f122f08added84d059e Mon Sep 17 00:00:00 2001 From: Kenneth VanderLinde Date: Thu, 18 Jun 2026 11:48:41 -0700 Subject: [PATCH] Remove redundant JVM options Both these options are now the default behaviour and so do not need to be provided. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 7adb8cc415..ff1aa9bec1 100644 --- a/build.gradle +++ b/build.gradle @@ -93,10 +93,10 @@ ext { } def javaArgs = [ - "-Xss8M", "-Dsun.java2d.d3d=false", "-Dfile.encoding=UTF-8", + "-Xss8M", "-Dsun.java2d.d3d=false", "-Dpolyglot.engine.WarnInterpreterOnly=false", "-Djava.util.Arrays.useLegacyMergeSort=true", - "-DMAPTOOL_DATADIR=.maptool-" + vendor.toLowerCase(), "-XX:+ShowCodeDetailsInExceptionMessages", + "-DMAPTOOL_DATADIR=.maptool-" + vendor.toLowerCase(), "--add-opens=java.desktop/java.awt=ALL-UNNAMED", "--add-opens=java.desktop/java.awt.geom=ALL-UNNAMED", "--add-opens=java.desktop/sun.awt.geom=ALL-UNNAMED", "--add-opens=java.base/java.util=ALL-UNNAMED", "--add-opens=javafx.web/javafx.scene.web=ALL-UNNAMED", "--add-opens=javafx.web/com.sun.webkit=ALL-UNNAMED",