Skip to content

Commit

Permalink
Add identity hashcode for easier debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
galderz committed Jan 28, 2010
1 parent 374a3bb commit 676270e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -206,7 +206,7 @@ public int hashCode() {

@Override
public String toString() {
return "MarshalledValue(cachedHashCode=" + cachedHashCode + "; serialized=" + (raw != null) + ")";
return "MarshalledValue(cachedHashCode=" + cachedHashCode + "; serialized=" + (raw != null) + ")@" + Integer.toHexString(System.identityHashCode(this));
}

/**
Expand Down

0 comments on commit 676270e

Please sign in to comment.