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-jxpath.git
The following commit(s) were added to refs/heads/master by this push:
new 3ce97180 Fix malformed Javadoc comments
3ce97180 is described below
commit 3ce9718024310fd0746e24245026edd1878bdef4
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Dec 13 15:32:10 2025 -0500
Fix malformed Javadoc comments
---
.../org/apache/commons/jxpath/CompiledExpression.java | 10 +++++-----
.../java/org/apache/commons/jxpath/JXPathContext.java | 18 +++++++++---------
.../org/apache/commons/jxpath/JXPathIntrospector.java | 4 ++--
3 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/src/main/java/org/apache/commons/jxpath/CompiledExpression.java
b/src/main/java/org/apache/commons/jxpath/CompiledExpression.java
index 7c1a3e98..500b6b51 100644
--- a/src/main/java/org/apache/commons/jxpath/CompiledExpression.java
+++ b/src/main/java/org/apache/commons/jxpath/CompiledExpression.java
@@ -45,9 +45,9 @@ public interface CompiledExpression {
* <p>
* Will throw an exception if one of the following conditions occurs:
* <ul>
- * <li>Elements of the XPath aleady exist, by the path does not in fact
describe an existing property
- * <li>The AbstractFactory fails to create an instance for an intermediate
element.
- * <li>The property is not writable (no public, non-static set method)
+ * <li>Elements of the XPath aleady exist, by the path does not in fact
describe an existing property</li>
+ * <li>The AbstractFactory fails to create an instance for an intermediate
element.</li>
+ * <li>The property is not writable (no public, non-static set method)</li>
* </ul>
*
* @param context base
@@ -118,8 +118,8 @@ public interface CompiledExpression {
/**
* Modifies the value of the property described by the supplied xpath.
Will throw an exception if one of the following conditions occurs:
* <ul>
- * <li>The XPath does not in fact describe an existing property
- * <li>The property is not writable (no public, non-static set method)
+ * <li>The XPath does not in fact describe an existing property</li>
+ * <li>The property is not writable (no public, non-static set method)</li>
* </ul>
*
* @param context base
diff --git a/src/main/java/org/apache/commons/jxpath/JXPathContext.java
b/src/main/java/org/apache/commons/jxpath/JXPathContext.java
index 801892b2..c4d20174 100644
--- a/src/main/java/org/apache/commons/jxpath/JXPathContext.java
+++ b/src/main/java/org/apache/commons/jxpath/JXPathContext.java
@@ -385,9 +385,9 @@ import org.apache.commons.jxpath.util.KeyManagerUtils;
* </p>
*
* <ol style='list-style:upper-alpha'>
- * <li>If {@code lenient} is {@code false} (default) - methods will throw
{@link JXPathNotFoundException}.
+ * <li>If {@code lenient} is {@code false} (default) - methods will throw
{@link JXPathNotFoundException}.</li>
* <li>If {@code lenient} is {@code true} - methods will throw no exception
and return a value appropriate for that method to express the absence: might be
a
- * Java {@code null} or a {@link Pointer} whose {@link Pointer#getValue()}
returns {@code null}, depends on the method.
+ * Java {@code null} or a {@link Pointer} whose {@link Pointer#getValue()}
returns {@code null}, depends on the method.</li>
* </ol>
* </li>
* </ul>
@@ -514,9 +514,9 @@ public abstract class JXPathContext {
* <p>
* Will throw an exception if one of the following conditions occurs:
* <ul>
- * <li>Elements of the XPath aleady exist, but the path does not in fact
describe an existing property
- * <li>The AbstractFactory fails to create an instance for an intermediate
element.
- * <li>The property is not writable (no public, non-static set method)
+ * <li>Elements of the XPath aleady exist, but the path does not in fact
describe an existing property</li>
+ * <li>The AbstractFactory fails to create an instance for an intermediate
element.</li>
+ * <li>The property is not writable (no public, non-static set method)</li>
* </ul>
*
* @param xpath indicating position to create
@@ -674,8 +674,8 @@ public abstract class JXPathContext {
* configured with {@link #setLenient(boolean)}:
* </p>
* <ul>
- * <li>{@code false} (default) the method will throw a {@link
JXPathNotFoundException}.
- * <li>{@code true} the method returns a pointer whose {@link
Pointer#getValue()} method will always return null.
+ * <li>{@code false} (default) the method will throw a {@link
JXPathNotFoundException}.</li>
+ * <li>{@code true} the method returns a pointer whose {@link
Pointer#getValue()} method will always return null.</li>
* </ul>
*
* @param xpath desired
@@ -945,8 +945,8 @@ public abstract class JXPathContext {
/**
* Modifies the value of the property described by the supplied xpath.
Will throw an exception if one of the following conditions occurs:
* <ul>
- * <li>The XPath does not in fact describe an existing property
- * <li>The property is not writable (no public, non-static set method)
+ * <li>The XPath does not in fact describe an existing property</li>
+ * <li>The property is not writable (no public, non-static set method)</li>
* </ul>
*
* @param xpath indicating position
diff --git a/src/main/java/org/apache/commons/jxpath/JXPathIntrospector.java
b/src/main/java/org/apache/commons/jxpath/JXPathIntrospector.java
index c9a65683..d25fea6b 100644
--- a/src/main/java/org/apache/commons/jxpath/JXPathIntrospector.java
+++ b/src/main/java/org/apache/commons/jxpath/JXPathIntrospector.java
@@ -122,8 +122,8 @@ public class JXPathIntrospector {
* <p>
* The process of creation of JXPathBeanInfo is as follows:
* <ul>
- * <li>If class named {@code <beanClass>XBeanInfo} exists, an instance of
that class is allocated.
- * <li>Otherwise, an instance of {@link JXPathBasicBeanInfo
JXPathBasicBeanInfo} is allocated.
+ * <li>If class named {@code <beanClass>XBeanInfo} exists, an instance of
that class is allocated.</li>
+ * <li>Otherwise, an instance of {@link JXPathBasicBeanInfo
JXPathBasicBeanInfo} is allocated.</li>
* </ul>
*
* @param beanClass whose info to get