From f031c343322ea3f9c70df42315bf2f0ccf749592 Mon Sep 17 00:00:00 2001 From: sohel-79 <108458109+sohel-79@users.noreply.github.com> Date: Tue, 6 Dec 2022 17:58:32 +0530 Subject: [PATCH 1/4] Fixed typo at line 81 --- .../main/java/io/github/ascopes/jct/compilers/JctCompiler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..013d60b4a 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}). From 85d0d1e5d0c667844e88c4c32a78ee46d991278a Mon Sep 17 00:00:00 2001 From: sohel-79 <108458109+sohel-79@users.noreply.github.com> Date: Thu, 8 Dec 2022 13:01:27 +0530 Subject: [PATCH 2/4] Update AbstractJctCompiler.java --- .../github/ascopes/jct/compilers/impl/AbstractJctCompiler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From c5cad86c6aebb9e68721f347434dbc673cbfe2da Mon Sep 17 00:00:00 2001 From: sohel-79 <108458109+sohel-79@users.noreply.github.com> Date: Thu, 8 Dec 2022 13:01:56 +0530 Subject: [PATCH 3/4] Update JctCompiler.java --- .../main/java/io/github/ascopes/jct/compilers/JctCompiler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..bb74300f5 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 @@ -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. */ From b2bfaca96bcd2533a92666074d72f06d40e190f7 Mon Sep 17 00:00:00 2001 From: sohel-79 <108458109+sohel-79@users.noreply.github.com> Date: Thu, 8 Dec 2022 13:02:24 +0530 Subject: [PATCH 4/4] Update JctCompiler.java --- .../main/java/io/github/ascopes/jct/compilers/JctCompiler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..7c715299d 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 @@ -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.