Skip to content

Commit db76393

Browse files
committed
Types in java.lang are always in scope
1 parent 66d4522 commit db76393

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/commons/beanutils/DynaProperty.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public DynaProperty(final String name, final Class<?> type, final Class<?> conte
109109
}
110110
/**
111111
* Checks this instance against the specified Object for equality. Overrides the
112-
* default refererence test for equality provided by {@link java.lang.Object#equals(Object)}
112+
* default refererence test for equality provided by {@link Object#equals(Object)}
113113
* @param obj The object to compare to
114114
* @return <code>true</code> if object is a dyna property with the same name
115115
* type and content type, otherwise <code>false</code>
@@ -173,7 +173,7 @@ public Class<?> getType() {
173173

174174
/**
175175
* @return the hashcode for this dyna property
176-
* @see java.lang.Object#hashCode
176+
* @see Object#hashCode
177177
* @since 1.8.0
178178
*/
179179
@Override

0 commit comments

Comments
 (0)