CONSTANT: Adjusted documentation, making it into JavaDoc. Incidently,

this constant could use a more descriptive name which better indicates
its use.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@136957 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Rall 2002-08-11 17:52:21 +00:00
parent 6b2b84f0e7
commit 1ca31bba23
1 changed files with 5 additions and 2 deletions

View File

@ -86,11 +86,14 @@
* </code> * </code>
* *
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: HashCodeUtils.java,v 1.1 2002/08/10 12:12:49 scolebourne Exp $ * @version $Id: HashCodeUtils.java,v 1.2 2002/08/11 17:52:21 dlr Exp $
*/ */
public class HashCodeUtils { public class HashCodeUtils {
// According to Bloch, its a random odd prime /**
* According to Bloch, the multiplier should be a random, odd
* prime.
*/
private static final int CONSTANT = 37; private static final int CONSTANT = 37;
/** /**