diff --git a/java-compiler-testing/src/main/java/io/github/ascopes/jct/compilers/JctCompiler.java b/java-compiler-testing/src/main/java/io/github/ascopes/jct/compilers/JctCompiler.java index 053b79dde..985a89303 100644 --- a/java-compiler-testing/src/main/java/io/github/ascopes/jct/compilers/JctCompiler.java +++ b/java-compiler-testing/src/main/java/io/github/ascopes/jct/compilers/JctCompiler.java @@ -78,7 +78,7 @@ public interface JctCompiler, R extends JctCompilati /** * Default setting for fixing modules being placed on the classpath by mistake ({@code true}). */ - boolean DEFAULT_FIX_JVM_MODULEPATH_MISMATCH = true; + boolean DEFAULT_FIX_JVM_MODULE_PATH_MISMATCH = true; /** * Default setting for inclusion of the current class path ({@code true}). @@ -584,7 +584,7 @@ default C target(SourceVersion target) { * enabled, and only applies to the current JVM classpath and module path. * *

Unless otherwise changed or specified, implementations should default to - * {@link #DEFAULT_FIX_JVM_MODULEPATH_MISMATCH}. + * {@link #DEFAULT_FIX_JVM_MODULE_PATH_MISMATCH}. * * @return {@code true} if enabled, or {@code false} if disabled. */ @@ -595,7 +595,7 @@ default C target(SourceVersion target) { * on the module path. * *

Unless otherwise changed or specified, implementations should default to - * {@link #DEFAULT_FIX_JVM_MODULEPATH_MISMATCH}. + * {@link #DEFAULT_FIX_JVM_MODULE_PATH_MISMATCH}. * * @param fixJvmModulePathMismatch whether to enable the mismatch fixing or not. * @return this compiler object for further call chaining. diff --git a/java-compiler-testing/src/main/java/io/github/ascopes/jct/compilers/impl/AbstractJctCompiler.java b/java-compiler-testing/src/main/java/io/github/ascopes/jct/compilers/impl/AbstractJctCompiler.java index 1dc73b2e3..976df52ca 100644 --- a/java-compiler-testing/src/main/java/io/github/ascopes/jct/compilers/impl/AbstractJctCompiler.java +++ b/java-compiler-testing/src/main/java/io/github/ascopes/jct/compilers/impl/AbstractJctCompiler.java @@ -114,7 +114,7 @@ protected AbstractJctCompiler( target = null; verbose = JctCompiler.DEFAULT_VERBOSE; diagnosticLoggingMode = JctCompiler.DEFAULT_DIAGNOSTIC_LOGGING_MODE; - fixJvmModulePathMismatch = JctCompiler.DEFAULT_FIX_JVM_MODULEPATH_MISMATCH; + fixJvmModulePathMismatch = JctCompiler.DEFAULT_FIX_JVM_MODULE_PATH_MISMATCH; inheritClassPath = JctCompiler.DEFAULT_INHERIT_CLASS_PATH; inheritModulePath = JctCompiler.DEFAULT_INHERIT_MODULE_PATH; inheritPlatformClassPath = JctCompiler.DEFAULT_INHERIT_PLATFORM_CLASS_PATH;