This is an automated email from the ASF dual-hosted git repository.
jacopoc pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
The following commit(s) were added to refs/heads/trunk by this push:
new 27916d0bd Fixed: Remove unnecessary Javadoc paragraph tags
27916d0bd is described below
commit 27916d0bdd44aa29aee9f49474bc5865cec3d947
Author: Jacopo Cappellato <[email protected]>
AuthorDate: Sat May 30 06:34:01 2026 +0200
Fixed: Remove unnecessary Javadoc paragraph tags
---
.../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 70677c5f2..3775a5ddd 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
@@ -84,7 +84,7 @@ public final class ReportEncoder {
* characters are converted to HTML entities.
*
* 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
@@ -406,7 +406,7 @@ public final class ReportEncoder {
* entity representation, for example & becomes &#38;.
*
* 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)
@@ -448,7 +448,7 @@ public final class ReportEncoder {
* entity representation, for example & becomes &#38;.
*
* 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)
@@ -513,7 +513,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)
@@ -533,7 +533,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 923b84292..50187afa8 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
@@ -142,7 +142,7 @@ public final class ReportStringUtil {
* Escapes a String so it may be used as a Perl5 regular expression.
*
* 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
*/