We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908999b commit 8759418Copy full SHA for 8759418
src/main/java/org/jenkinsci/plugins/workflow/cps/CpsFlowExecution.java
@@ -1363,7 +1363,7 @@ private static void cleanUpGlobalClassValue(@NonNull ClassLoader loader) throws
1363
private static void cleanUpClassInfoCache(Class<?> clazz) {
1364
JavaSpecificationVersion current = JavaSpecificationVersion.forCurrentJVM();
1365
if (current.isNewerThan(new JavaSpecificationVersion("1.8"))
1366
- && current.isOlderThan(new JavaSpecificationVersion("17"))) {
+ && current.isOlderThan(new JavaSpecificationVersion("16"))) {
1367
try {
1368
// TODO Work around JDK-8231454.
1369
Class<?> classInfoC = Class.forName("com.sun.beans.introspect.ClassInfo");
0 commit comments