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: plugin-modernizer-core/src/test/java/io/jenkins/tools/pluginmodernizer/core/recipes/DeclarativeRecipesTest.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3441,13 +3441,19 @@ public class StringEscapeUtils {
3441
3441
public static String escapeHtml(String input) {
3442
3442
return input;
3443
3443
}
3444
+
public static String escapeJavaScript(String input) {
3445
+
return input;
3446
+
}
3444
3447
}
3445
3448
""", """
3446
3449
package org.apache.commons.text;
3447
3450
public class StringEscapeUtils {
3448
3451
public static String escapeHtml4(String input) {
3449
3452
return input;
3450
3453
}
3454
+
public static String escapeEcmaScript(String input) {
0 commit comments