From: Eric F. <er...@us...> - 2002-08-18 19:14:33
|
Update of /cvsroot/trove4j/trove/src/gnu/trove In directory usw-pr-cvs1:/tmp/cvs-serv9225 Modified Files: TObjectHash.java TObjectIdentityHashingStrategy.java Log Message: javadoc tweaks Index: TObjectHash.java =================================================================== RCS file: /cvsroot/trove4j/trove/src/gnu/trove/TObjectHash.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TObjectHash.java 18 Aug 2002 16:43:15 -0000 1.11 --- TObjectHash.java 18 Aug 2002 19:14:28 -0000 1.12 *************** *** 271,275 **** * @param object for which the hashcode is to be computed * @return the hashCode ! * @see Object.hashCode() */ public final int computeHashCode(Object o) { --- 271,275 ---- * @param object for which the hashcode is to be computed * @return the hashCode ! * @see Object#hashCode() */ public final int computeHashCode(Object o) { *************** *** 285,289 **** * @param o2 an <code>Object</code> value * @return true if the objects are equal ! * @see Object.equals() */ public final boolean equals(Object o1, Object o2) { --- 285,289 ---- * @param o2 an <code>Object</code> value * @return true if the objects are equal ! * @see Object#equals(Object) */ public final boolean equals(Object o1, Object o2) { Index: TObjectIdentityHashingStrategy.java =================================================================== RCS file: /cvsroot/trove4j/trove/src/gnu/trove/TObjectIdentityHashingStrategy.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TObjectIdentityHashingStrategy.java 18 Aug 2002 16:43:15 -0000 1.1 --- TObjectIdentityHashingStrategy.java 18 Aug 2002 19:14:28 -0000 1.2 *************** *** 17,25 **** public final class TObjectIdentityHashingStrategy implements TObjectHashingStrategy { /** ! * Delegates hash code computation to the System.identityHashCode() method. * * @param object for which the hashcode is to be computed * @return the hashCode - * @see System.identityHashCode() */ public final int computeHashCode(Object object) { --- 17,24 ---- public final class TObjectIdentityHashingStrategy implements TObjectHashingStrategy { /** ! * Delegates hash code computation to the System.identityHashCode(Object) method. * * @param object for which the hashcode is to be computed * @return the hashCode */ public final int computeHashCode(Object object) { |