File tree 3 files changed +4
-2
lines changed
logback-classic/src/test/java/ch/qos/logback/classic/util
main/java/ch/qos/logback/core/util
test/java/ch/qos/logback/core/util
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -26,5 +26,4 @@ public void versionTest() {
26
26
27
27
28
28
29
-
30
29
}
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public class ExecutorServiceUtil {
45
45
private final ThreadFactory defaultFactory = makeThreadFactory ();
46
46
47
47
/**
48
- * A thread factory which may be a virtual thread factory if available .
48
+ * A thread factory which may be a virtual thread factory the JDK supports it .
49
49
*
50
50
* @return
51
51
*/
Original file line number Diff line number Diff line change @@ -39,8 +39,11 @@ public void jdkVersion() {
39
39
Assertions .assertEquals (9 , EnvUtil .getJDKVersion ("9EA" ));
40
40
Assertions .assertEquals (9 , EnvUtil .getJDKVersion ("9.0.1" ));
41
41
Assertions .assertEquals (18 , EnvUtil .getJDKVersion ("18.3+xx" ));
42
+ Assertions .assertEquals (21 , EnvUtil .getJDKVersion ("21.0.1" ));
42
43
}
43
44
45
+
46
+
44
47
@ Test
45
48
public void testJava1_4 () {
46
49
System .setProperty ("java.version" , "1.4.xx" );
You can’t perform that action at this time.
0 commit comments