mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-21 00:29:21 +01:00
Made magic number constants private.
Former-commit-id: 12539d50efb17790b770934d10b953e0fd180c8a
This commit is contained in:
@@ -29,8 +29,15 @@ import java.io.Serializable;
|
|||||||
*/
|
*/
|
||||||
public class Evidence implements Serializable, Comparable<Evidence> {
|
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.
|
* Creates a new Evidence object.
|
||||||
|
|||||||
Reference in New Issue
Block a user