Sho SHIMIZU
Committed by Gerrit Code Review

Use Long.hashCode(long) to avoid manual hash code calculation

Change-Id: I5f4aa8b80339a0c671ff2d12f8ba25dba023f220
......@@ -44,7 +44,7 @@ public class IndexedLambda implements Lambda {
@Override
public int hashCode() {
return (int) (index ^ (index >>> 32));
return Long.hashCode(index);
}
@Override
......