This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 11.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 1ebde0b7a1ac17a2874483ace2d85eb1113da630 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Mar 20 14:57:58 2025 +0000 Improve Javadoc formatting --- java/org/apache/jasper/tagplugins/jstl/Util.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/java/org/apache/jasper/tagplugins/jstl/Util.java b/java/org/apache/jasper/tagplugins/jstl/Util.java index 09b1325b83..8cd9612815 100644 --- a/java/org/apache/jasper/tagplugins/jstl/Util.java +++ b/java/org/apache/jasper/tagplugins/jstl/Util.java @@ -161,13 +161,13 @@ public class Util { /** * Performs the following substring replacements * (to facilitate output to XML/HTML pages): - * - * & -> &amp; - * < -> &lt; - * > -> &gt; - * " -> &#034; - * ' -> &#039; - * + * <ul> + * <li>{@code &} -> {@code &}</li> + * <li>{@code <} -> {@code <}</li> + * <li>{@code >} -> {@code >}</li> + * <li>{@code "} -> {@code "}</li> + * <li>{@code '} -> {@code '}</li> + * </ul> * See also OutSupport.writeEscapedXml(). * * taken from org.apache.taglibs.standard.tag.common.core.Util --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org