diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lombok/eclipse/handlers/HandleData.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lombok/eclipse/handlers/HandleData.java b/src/lombok/eclipse/handlers/HandleData.java index c65ea5cf..c26a2697 100644 --- a/src/lombok/eclipse/handlers/HandleData.java +++ b/src/lombok/eclipse/handlers/HandleData.java @@ -552,6 +552,7 @@ public class HandleData implements EclipseAnnotationHandler<Data> { /** Give 2 clones! */ private Expression longToIntForHashCode(Reference ref1, Reference ref2) { + /* (int)(ref >>> 32 ^ ref) */ BinaryExpression higherBits = new BinaryExpression( ref1, new IntLiteral("32".toCharArray(), 0, 0), OperatorIds.UNSIGNED_RIGHT_SHIFT); |