You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/03/19 13:40:53 UTC

[commons-jci] 02/17: Fix Javadoc

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-jci.git

commit 6aa6a3fdd10b104184129decfacf9285d066f68a
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 09:36:01 2023 -0400

    Fix Javadoc
---
 core/src/main/java/org/apache/commons/jci2/utils/ConversionUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/commons/jci2/utils/ConversionUtils.java b/core/src/main/java/org/apache/commons/jci2/utils/ConversionUtils.java
index 1592162..55d4879 100644
--- a/core/src/main/java/org/apache/commons/jci2/utils/ConversionUtils.java
+++ b/core/src/main/java/org/apache/commons/jci2/utils/ConversionUtils.java
@@ -30,7 +30,7 @@ public final class ConversionUtils {
 
     /**
      * Please do not use - internal
-     * org/my/Class.xxx -> org.my.Class
+     * org/my/Class.xxx -&gt; org.my.Class
      */
     public static String convertResourceToClassName( final String pResourceName ) {
         return ConversionUtils.stripExtension(pResourceName).replace('/', '.');