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-jexl.git
The following commit(s) were added to refs/heads/master by this push:
new 30b1bfd9 Javadoc
30b1bfd9 is described below
commit 30b1bfd937342609863c158e33fbf52fa9f17a35
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Nov 7 22:05:31 2025 -0500
Javadoc
Use emphasis instead of italics
---
.../org/apache/commons/jexl3/internal/introspection/ClassTool.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassTool.java
b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassTool.java
index 3a78d384..85c74d16 100644
---
a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassTool.java
+++
b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassTool.java
@@ -117,8 +117,8 @@ final class ClassTool {
* return module.isExported(declarator.getPackageName(), jexlModule);
* }
* This is required since some classes and methods may not be exported
thus not callable through
- * reflection. A package can be non-exported, <i>unconditionally</i>
exported (to all reading
- * modules), or use <i>qualified</i> exports to only export the package to
specifically named
+ * reflection. A package can be non-exported, <em>unconditionally</em>
exported (to all reading
+ * modules), or use <em>qualified</em> exports to only export the package
to specifically named
* modules. This method is only concerned with whether JEXL may
reflectively access the
* package, so a qualified export naming the JEXL module is the
least-privilege access required.
* The declarator's module may also use: unqualified exports, qualified
{@code opens}, or