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:22:06 UTC

[commons-validator] 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-validator.git


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

commit e55f37f550b6e1d705c73af885a6998e890ba1bc
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Aug 29 07:22:02 2022 -0400

    Javadoc @see tags do not need to use a FQCN for classes in java.lang
---
 src/main/java/org/apache/commons/validator/util/Flags.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/validator/util/Flags.java b/src/main/java/org/apache/commons/validator/util/Flags.java
index 30550f47..67c50a93 100644
--- a/src/main/java/org/apache/commons/validator/util/Flags.java
+++ b/src/main/java/org/apache/commons/validator/util/Flags.java
@@ -141,7 +141,7 @@ public class Flags implements Serializable, Cloneable {
      * Clone this Flags object.
      *
      * @return a copy of this object.
-     * @see java.lang.Object#clone()
+     * @see Object#clone()
      */
     @Override
     public Object clone() {
@@ -155,7 +155,7 @@ public class Flags implements Serializable, Cloneable {
     /**
      * Tests if two Flags objects are in the same state.
      * @param obj object being tested
-     * @see java.lang.Object#equals(java.lang.Object)
+     * @see Object#equals(Object)
      *
      * @return whether the objects are equal.
      */
@@ -176,7 +176,7 @@ public class Flags implements Serializable, Cloneable {
 
     /**
      * The hash code is based on the current state of the flags.
-     * @see java.lang.Object#hashCode()
+     * @see Object#hashCode()
      *
      * @return the hash code for this object.
      */