Skip to content

Commit e1baf30

Browse files
authored
Remove modules in docs for AbstractCompilersProvider.java
Remove the modules parameters in documentation that was missed when v1.0.0 was released Signed-off-by: ascopes <[email protected]>
1 parent 2acc022 commit e1baf30

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

java-compiler-testing/src/main/java/io/github/ascopes/jct/junit/AbstractCompilersProvider.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@
6969
* }
7070
*
7171
* {@literal @Override}
72-
* protected int minSupportedVersion(boolean modules) {
72+
* protected int minSupportedVersion() {
7373
* return 11; // Support Java 11 as the minimum.
7474
* }
7575
*
7676
* {@literal @Override}
77-
* protected int maxSupportedVersion(boolean modules) {
77+
* protected int maxSupportedVersion() {
7878
* return 19; // Support Java 19 as the maximum.
7979
* }
8080
*
@@ -83,7 +83,6 @@
8383
* super.configure(
8484
* annotation.minVersion(),
8585
* annotation.maxVersion(),
86-
* true,
8786
* annotation.configurers(),
8887
* annotation.versionStrategy(),
8988
* );

0 commit comments

Comments
 (0)