This is an automated email from the ASF dual-hosted git repository. jacopoc pushed a commit to branch release24.09 in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
commit 2dbeee537e0e9b79a3d1182a1f47b32bf975d881 Author: Jacopo Cappellato <[email protected]> AuthorDate: Sat May 30 06:34:01 2026 +0200 Fixed: Remove unnecessary Javadoc paragraph tags (cherry picked from commit 27916d0bdd44aa29aee9f49474bc5865cec3d947) --- .../java/org/apache/ofbiz/htmlreport/util/ReportEncoder.java | 10 +++++----- .../org/apache/ofbiz/htmlreport/util/ReportStringUtil.java | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pricat/src/main/java/org/apache/ofbiz/htmlreport/util/ReportEncoder.java b/pricat/src/main/java/org/apache/ofbiz/htmlreport/util/ReportEncoder.java index ba910688e..3babc89ef 100644 --- a/pricat/src/main/java/org/apache/ofbiz/htmlreport/util/ReportEncoder.java +++ b/pricat/src/main/java/org/apache/ofbiz/htmlreport/util/ReportEncoder.java @@ -81,7 +81,7 @@ public final class ReportEncoder { * in the given charset are contained as chars, whereas all other non-displayable * characters are converted to HTML entities.<p> * Just calls {@link #decodeHtmlEntities(String, String)} first and feeds the result - * to {@link #encodeHtmlEntities(String, String)}. <p> + * to {@link #encodeHtmlEntities(String, String)}. * @param input the input to adjust the HTML encoding for * @param encoding the charset to encode the result with\ * @return the input with the decoded/encoded HTML entities @@ -385,7 +385,7 @@ public final class ReportEncoder { * Escapes special characters in a HTML-String with their number-based * entity representation, for example & becomes &#38;.<p> * A character <code>num</code> is replaced if<br> - * <code>((ch != 32) && ((ch > 122) || (ch < 48) || (ch == 60) || (ch == 62)))</code><p> + * <code>((ch != 32) && ((ch > 122) || (ch < 48) || (ch == 60) || (ch == 62)))</code> * @param source the String to escape * @return String the escaped String * @see #escapeXml(String) @@ -426,7 +426,7 @@ public final class ReportEncoder { * Escapes non ASCII characters in a HTML-String with their number-based * entity representation, for example & becomes &#38;.<p> * A character <code>num</code> is replaced if<br> - * <code>(ch > 255)</code><p> + * <code>(ch > 255)</code> * @param source the String to escape * @return String the escaped String * @see #escapeXml(String) @@ -489,7 +489,7 @@ public final class ReportEncoder { * <li><b>></b> with &gt; * <li><b>&</b> with &amp; * <li><b>"</b> with &quot; - * </ul><p> + * </ul> * @param source the string to escape * @return the escaped string * @see #escapeHtml(String) @@ -508,7 +508,7 @@ public final class ReportEncoder { * <li><b>></b> with &gt; * <li><b>&</b> with &amp; * <li><b>"</b> with &quot; - * </ul><p> + * </ul> * @param source the string to escape * @param doubleEscape if <code>false</code>, all entities that already are escaped are left untouched * @return the escaped string diff --git a/pricat/src/main/java/org/apache/ofbiz/htmlreport/util/ReportStringUtil.java b/pricat/src/main/java/org/apache/ofbiz/htmlreport/util/ReportStringUtil.java index 6ad61cb86..a0db23773 100644 --- a/pricat/src/main/java/org/apache/ofbiz/htmlreport/util/ReportStringUtil.java +++ b/pricat/src/main/java/org/apache/ofbiz/htmlreport/util/ReportStringUtil.java @@ -135,7 +135,7 @@ public final class ReportStringUtil { /** * Escapes a String so it may be used as a Perl5 regular expression.<p> * This method replaces the following characters in a String:<br> - * <code>{}[]()\$^.*+/</code><p> + * <code>{}[]()\$^.*+/</code> * @param source the string to escape * @return the escaped string */

