You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: plexus-compilers/plexus-compiler-javac-errorprone/src/test/java/org/codehaus/plexus/compiler/javac/JavacErrorProneCompilerTest.java
+5-2
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,12 @@ protected int expectedWarnings() {
Copy file name to clipboardexpand all lines: plexus-compilers/plexus-compiler-javac/src/test/java/org/codehaus/plexus/compiler/javac/AbstractJavacCompilerTest.java
+21-3
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,9 @@ protected int expectedErrors() {
68
68
|| javaVersion.contains("18")
69
69
|| javaVersion.contains("19")
70
70
|| javaVersion.contains("20")
71
-
|| javaVersion.contains("21")) {
71
+
|| javaVersion.contains("21")
72
+
|| javaVersion.contains("22")
73
+
|| javaVersion.contains("23")) {
72
74
return5;
73
75
}
74
76
// javac output changed for misspelled modifiers starting in 1.6...they now generate 2 errors per occurrence,
@@ -92,7 +94,9 @@ protected int expectedWarnings() {
92
94
|| javaVersion.contains("18")
93
95
|| javaVersion.contains("19")
94
96
|| javaVersion.contains("20")
95
-
|| javaVersion.contains("21")) {
97
+
|| javaVersion.contains("21")
98
+
|| javaVersion.contains("22")
99
+
|| javaVersion.contains("23")) {
96
100
return1;
97
101
}
98
102
if (javaVersion.contains("1.8")) {
@@ -141,6 +145,12 @@ public String getTargetVersion() {
141
145
if (javaVersion.contains("21")) {
142
146
return"21";
143
147
}
148
+
if (javaVersion.contains("22")) {
149
+
return"22";
150
+
}
151
+
if (javaVersion.contains("23")) {
152
+
return"23";
153
+
}
144
154
returnsuper.getTargetVersion();
145
155
}
146
156
@@ -177,6 +187,12 @@ public String getSourceVersion() {
Copy file name to clipboardexpand all lines: plexus-compilers/plexus-compiler-javac/src/test/java/org/codehaus/plexus/compiler/javac/JavaxToolsCompilerTest.java
+3-1
Original file line number
Diff line number
Diff line change
@@ -27,8 +27,10 @@ public class JavaxToolsCompilerTest extends AbstractJavacCompilerTest {
27
27
@Override
28
28
protectedintexpectedWarnings() {
29
29
StringjavaVersion = getJavaVersion();
30
-
if (javaVersion.contains("21")) {
30
+
if (javaVersion.contains("21") || javaVersion.contains("22")) {
0 commit comments