This is an automated email from the ASF dual-hosted git repository.
garydgregory 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 1f9c0fe6 Javadoc: Use {@code}
1f9c0fe6 is described below
commit 1f9c0fe6cc720215c537a905aa5a91a55e01b079
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Apr 24 09:12:26 2026 -0400
Javadoc: Use {@code}
---
src/main/java/org/apache/commons/jxpath/JXPathContext.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/jxpath/JXPathContext.java
b/src/main/java/org/apache/commons/jxpath/JXPathContext.java
index 4823698b..68495a7f 100644
--- a/src/main/java/org/apache/commons/jxpath/JXPathContext.java
+++ b/src/main/java/org/apache/commons/jxpath/JXPathContext.java
@@ -202,7 +202,7 @@ import org.apache.commons.jxpath.util.KeyManagerUtils;
* <p>
* JXPath can be used to create new objects. First, create a subclass of
{@link AbstractFactory AbstractFactory} and
* install it on the JXPathContext. Then call {@link JXPathContext#createPath
createPathAndSetValue()} instead of "setValue". JXPathContext will invoke your
- * AbstractFactory when it discovers that an intermediate node of the path is
<strong>null</strong>. It will not override existing nodes.
+ * AbstractFactory when it discovers that an intermediate node of the path is
{@code null}. It will not override existing nodes.
* </p>
*
* <pre>