minor change to workariund a java6 profiling glitch
This commit is contained in:
parent
6bd435723f
commit
fb9334bf24
5 changed files with 8 additions and 8 deletions
|
|
@ -6,21 +6,20 @@ import btools.util.LruMapNode;
|
|||
|
||||
public final class CacheNode extends LruMapNode
|
||||
{
|
||||
int crc;
|
||||
byte[] ab;
|
||||
float[] vars;
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
return crc;
|
||||
return hash;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object o )
|
||||
{
|
||||
CacheNode n = (CacheNode) o;
|
||||
if ( crc != n.crc )
|
||||
if ( hash != n.hash )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue