This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jelly.git


The following commit(s) were added to refs/heads/master by this push:
     new 0249f815 Fix malformed Javadoc comments
0249f815 is described below

commit 0249f815ca0a6ee5e72fdd6d295c954dd9fdfa59
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Dec 13 15:30:22 2025 -0500

    Fix malformed Javadoc comments
---
 .../org/apache/commons/jelly/JellyContext.java     |  2 +-
 .../jelly/impl/DefaultTagLibraryResolver.java      |  2 +-
 .../org/apache/commons/jelly/parser/XMLParser.java |  2 +-
 .../jelly/tags/core/BaseClassLoaderTag.java        |  2 +-
 .../commons/jelly/util/ClassLoaderUtils.java       |  8 +--
 .../java/javax/servlet/jsp/jstl/sql/Result.java    | 10 ++--
 .../commons/jelly/tags/swing/SwingTagLibrary.java  | 68 +++++++++++-----------
 7 files changed, 46 insertions(+), 48 deletions(-)

diff --git a/core/src/main/java/org/apache/commons/jelly/JellyContext.java 
b/core/src/main/java/org/apache/commons/jelly/JellyContext.java
index c8c574fc..3e209e42 100644
--- a/core/src/main/java/org/apache/commons/jelly/JellyContext.java
+++ b/core/src/main/java/org/apache/commons/jelly/JellyContext.java
@@ -322,7 +322,7 @@ public class JellyContext {
      * <li>The class loader set by {@code setClassLoader()}, if any</li>
      * <li>The thread context class loader, if it exists and the
      *     {@code useContextClassLoader} property is set to true</li>
-     * <li>The class loader used to load the XMLParser class itself.
+     * <li>The class loader used to load the XMLParser class itself.</li>
      * </ul>
      */
     public ClassLoader getClassLoader() {
diff --git 
a/core/src/main/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java
 
b/core/src/main/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java
index 74664af8..0a775c89 100644
--- 
a/core/src/main/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java
+++ 
b/core/src/main/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java
@@ -66,7 +66,7 @@ public class DefaultTagLibraryResolver implements 
TagLibraryResolver {
      * <li>The class loader set by {@code setClassLoader()}, if any</li>
      * <li>The thread context class loader, if it exists and the
      *     {@code useContextClassLoader} property is set to true</li>
-     * <li>The class loader used to load the XMLParser class itself.
+     * <li>The class loader used to load the XMLParser class itself.</li>
      * </ul>
      */
     public ClassLoader getClassLoader() {
diff --git a/core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java 
b/core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java
index 4027e1c6..89bb0405 100644
--- a/core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java
+++ b/core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java
@@ -692,7 +692,7 @@ public class XMLParser extends DefaultHandler {
      * <li>The class loader set by {@code setClassLoader()}, if any</li>
      * <li>The thread context class loader, if it exists and the
      *     {@code useContextClassLoader} property is set to true</li>
-     * <li>The class loader used to load the XMLParser class itself.
+     * <li>The class loader used to load the XMLParser class itself.</li>
      * </ul>
      */
     public ClassLoader getClassLoader() {
diff --git 
a/core/src/main/java/org/apache/commons/jelly/tags/core/BaseClassLoaderTag.java 
b/core/src/main/java/org/apache/commons/jelly/tags/core/BaseClassLoaderTag.java
index 8383e56f..3cec0e33 100644
--- 
a/core/src/main/java/org/apache/commons/jelly/tags/core/BaseClassLoaderTag.java
+++ 
b/core/src/main/java/org/apache/commons/jelly/tags/core/BaseClassLoaderTag.java
@@ -43,7 +43,7 @@ public abstract class BaseClassLoaderTag extends TagSupport {
      * <li>The class loader set by {@code setClassLoader()}, if any</li>
      * <li>The thread context class loader, if it exists and the
      *     {@code useContextClassLoader} property is set to true</li>
-     * <li>The class loader used to load the XMLParser class itself.
+     * <li>The class loader used to load the XMLParser class itself.</li>
      * </ul>
      */
     public ClassLoader getClassLoader() {
diff --git 
a/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java 
b/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java
index 98cbfb31..050f2ec1 100644
--- a/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java
+++ b/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java
@@ -47,8 +47,8 @@ public class ClassLoaderUtils {
      * <ul>
      * <li>The specified class loader, if any</li>
      * <li>The thread context class loader, if it exists and {@code 
useContextClassLoader} is true</li>
-     * <li>The class loader used to load the calling class.
-     * <li>The System class loader.
+     * <li>The class loader used to load the calling class.</li>
+     * <li>The System class loader.</li>
      * </ul>
      */
     public static ClassLoader getClassLoader(final ClassLoader 
specifiedLoader, final boolean useContextClassLoader, final Class callingClass) 
{
@@ -69,8 +69,8 @@ public class ClassLoaderUtils {
      * when a context class loader is not specified.  This is determined based 
upon the following rules:
      * <ul>
      * <li>The specified class loader, if any</li>
-     * <li>The class loader used to load the calling class.
-     * <li>The System class loader.
+     * <li>The class loader used to load the calling class.</li>
+     * <li>The System class loader.</li>
      * </ul>
      */
     public static ClassLoader getClassLoader(final ClassLoader 
specifiedLoader, final Class callingClass) {
diff --git 
a/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/Result.java 
b/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/Result.java
index c693b935..b2fcc251 100644
--- a/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/Result.java
+++ b/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/Result.java
@@ -25,12 +25,12 @@ import java.util.SortedMap;
  * query result:</p>
  *
  * <ul>
- * <li> result rows
- * <li> result rows using an index
- * <li> number of rows in the result
- * <li> result meta data
+ * <li> result rows</li>
+ * <li> result rows using an index</li>
+ * <li> number of rows in the result</li>
+ * <li> result meta data</li>
  * <li> indication whether result returned is a complete set or
- *      a subset limited by a maximum row setting
+ *      a subset limited by a maximum row setting</li>
  * </ul>
  */
 public interface Result {
diff --git 
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
 
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
index 0a85b3f2..d8415267 100644
--- 
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
+++ 
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
@@ -72,41 +72,39 @@ import org.xml.sax.Attributes;
  * the following basic components:
  * </p>
  * <ul>
- * <li>button - JButton
-        <li>checkBox - JCheckBox
-<li>checkBoxMenuItem - JCheckBoxMenuItem
-<li>comboBox - JComboBox
-<li>desktopPane - JDesktopPane
-<li>editorPane - JEditorPane
-<li>fileChooser - JFileChooser
-<li>frame - JFrame
-<li>internalFrame - JInternalFrame
-<li>label - JLabel
-<li>list - JList
-<li>menu - JMenu
-<li>menuBar - JMenuBar
-<li>menuItem - JMenuItem
-<li>panel - JPanel
-<li>passwordField - JPasswordField
-<li>popupMenu - JPopupMenu
-<li>progressBar - JProgressBar
-<li>radioButton - JRadioButton
-<li>radioButtonMenuItem - JRadioButtonMenuItem
-<li>optionPane - JOptionPane
-<li>scrollPane - JScrollPane
-<li>separator - JSeparator
-
-<li>splitPane - JSplitPane
-<li>hbox" - Box.createHorizontalBox()
-<li>vbox - Box.createVerticalBox()
-
-<li>tabbedPane - JTabbedPane
-<li>table - JTable
-<li>textArea - JTextArea
-<li>textField - JTextField
-<li>toggleButton - JToggleButton
-<li>tree - JTree
-<li>toolBar - JToolBar
+ * <li>button - JButton</li>
+ * <li>checkBox - JCheckBox</li>
+ * <li>checkBoxMenuItem - JCheckBoxMenuItem</li>
+ * <li>comboBox - JComboBox</li>
+ * <li>desktopPane - JDesktopPane</li>
+ * <li>editorPane - JEditorPane</li>
+ * <li>fileChooser - JFileChooser</li>
+ * <li>frame - JFrame</li>
+ * <li>internalFrame - JInternalFrame</li>
+ * <li>label - JLabel</li>
+ * <li>list - JList</li>
+ * <li>menu - JMenu</li>
+ * <li>menuBar - JMenuBar</li>
+ * <li>menuItem - JMenuItem</li>
+ * <li>panel - JPanel</li>
+ * <li>passwordField - JPasswordField</li>
+ * <li>popupMenu - JPopupMenu</li>
+ * <li>progressBar - JProgressBar</li>
+ * <li>radioButton - JRadioButton</li>
+ * <li>radioButtonMenuItem - JRadioButtonMenuItem</li>
+ * <li>optionPane - JOptionPane</li>
+ * <li>scrollPane - JScrollPane</li>
+ * <li>separator - JSeparator</li>
+ * <li>splitPane - JSplitPane</li>
+ * <li>hbox" - Box.createHorizontalBox()</li>
+ * <li>vbox - Box.createVerticalBox()</li>
+ * <li>tabbedPane - JTabbedPane</li>
+ * <li>table - JTable</li>
+ * <li>textArea - JTextArea</li>
+ * <li>textField - JTextField</li>
+ * <li>toggleButton - JToggleButton</li>
+ * <li>tree - JTree</li>
+ * <li>toolBar - JToolBar</li>
  * </ul>
  */
 public class SwingTagLibrary extends TagLibrary {

Reply via email to