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 2022/08/29 11:08:59 UTC

[commons-configuration] branch master updated: Javadoc @see tags do not need to use a FQCN for classes in java.lang

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


The following commit(s) were added to refs/heads/master by this push:
     new 23a935d1 Javadoc @see tags do not need to use a FQCN for classes in java.lang
23a935d1 is described below

commit 23a935d11680eda1f7aa51a2735ce581f90f06cb
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Aug 29 07:08:55 2022 -0400

    Javadoc @see tags do not need to use a FQCN for classes in java.lang
---
 src/main/java/org/apache/commons/configuration2/ConfigurationMap.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/configuration2/ConfigurationMap.java b/src/main/java/org/apache/commons/configuration2/ConfigurationMap.java
index 0b47e419..7b554c6b 100644
--- a/src/main/java/org/apache/commons/configuration2/ConfigurationMap.java
+++ b/src/main/java/org/apache/commons/configuration2/ConfigurationMap.java
@@ -77,7 +77,7 @@ public class ConfigurationMap extends AbstractMap<Object, Object> {
      * @param key the key (will be converted to a string)
      * @param value the value
      * @return the old value of this key or <b>null</b> if it is new
-     * @see java.util.Map#put(java.lang.Object, java.lang.Object)
+     * @see java.util.Map#put(Object, Object)
      */
     @Override
     public Object put(final Object key, final Object value) {
@@ -93,7 +93,7 @@ public class ConfigurationMap extends AbstractMap<Object, Object> {
      *
      * @param key the key
      * @return the value of this key
-     * @see java.util.Map#get(java.lang.Object)
+     * @see java.util.Map#get(Object)
      */
     @Override
     public Object get(final Object key) {