Made magic number constants private.

Former-commit-id: 12539d50efb17790b770934d10b953e0fd180c8a
This commit is contained in:
Dale Visser
2015-06-24 15:25:03 -04:00
parent 414912de67
commit e6707c65a5

View File

@@ -29,8 +29,15 @@ import java.io.Serializable;
*/
public class Evidence implements Serializable, Comparable<Evidence> {
public static final int MAGIC_HASH_INIT_VALUE = 3;
public static final int MAGIC_HASH_MULTIPLIER = 67;
/**
* Used as starting point for generating the value in {@link #hashCode()}.
*/
private static final int MAGIC_HASH_INIT_VALUE = 3;
/**
* Used as a multiplier for generating the value in {@link #hashCode()}.
*/
private static final int MAGIC_HASH_MULTIPLIER = 67;
/**
* Creates a new Evidence object.