Centralize all usages of System.identityHashCode()
--------------------------------------------------
Key: ISPN-933
URL:
https://issues.jboss.org/browse/ISPN-933
Project: Infinispan
Issue Type: Task
Reporter: Galder Zamarreño
Assignee: Galder Zamarreño
Priority: Minor
Fix For: 4.2.1.CR2, 5.0.0.ALPHA3
Substitute all uses of System.identityHashCode() behind a method like this in Util:
public static String hexIdHashCode(Object o) {
return Integer.toHexString(System.identityHashCode(o));
}
The hexadecimal version occupies less space and does the same job.
Also, stop/start marshaller should not print the id hash code, it's too verbose and
it's only needed when debugging a particular problem which has not been present in a
while.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: