From ce1ecd3224248ad9784bd245201047e91f5426f7 Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Thu, 9 Jan 2025 14:31:09 +0000 Subject: [PATCH] Restore DEBUG_YUI field for now --- core/src/main/java/hudson/Functions.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/src/main/java/hudson/Functions.java b/core/src/main/java/hudson/Functions.java index 9efa54c06614..6f9caffaa4e8 100644 --- a/core/src/main/java/hudson/Functions.java +++ b/core/src/main/java/hudson/Functions.java @@ -661,6 +661,14 @@ public static String validateIconSize(String iconSize) throws SecurityException return iconSize; } + /** + * No longer used, to be removed after enouch plugins have adopted a version of the test harness with + * jenkins-test-harness/pull/874 in it. + */ + @SuppressFBWarnings(value = "MS_SHOULD_BE_FINAL", justification = "for script console") + @Deprecated(forRemoval = true, since = "TODO") + public static boolean DEBUG_YUI; + /** * Creates a sub map by using the given range (both ends inclusive). */