diff options
author | Roel Spilker <r.spilker@gmail.com> | 2014-03-26 21:11:30 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2014-03-26 21:11:30 +0100 |
commit | 4d24542dac058fcd7c341f9d17c4e8170a8d83a2 (patch) | |
tree | 945083ad989cb2abfb84f02ed88bc8b21ef87827 /test/transform/resource/before/EqualsAndHashCodeWithExistingMethods.java | |
parent | db71f39c271f1f8124fac96daa68d8b012fbf390 (diff) | |
download | lombok-4d24542dac058fcd7c341f9d17c4e8170a8d83a2.tar.gz lombok-4d24542dac058fcd7c341f9d17c4e8170a8d83a2.tar.bz2 lombok-4d24542dac058fcd7c341f9d17c4e8170a8d83a2.zip |
[i660] canEqual is now protected instead of public.
Also fixed the total lack of canEqual in the usage examples.
Diffstat (limited to 'test/transform/resource/before/EqualsAndHashCodeWithExistingMethods.java')
-rw-r--r-- | test/transform/resource/before/EqualsAndHashCodeWithExistingMethods.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/before/EqualsAndHashCodeWithExistingMethods.java b/test/transform/resource/before/EqualsAndHashCodeWithExistingMethods.java index be90d871..e21b82d9 100644 --- a/test/transform/resource/before/EqualsAndHashCodeWithExistingMethods.java +++ b/test/transform/resource/before/EqualsAndHashCodeWithExistingMethods.java @@ -20,7 +20,7 @@ final class EqualsAndHashCodeWithExistingMethods2 { final class EqualsAndHashCodeWithExistingMethods3 extends EqualsAndHashCodeWithExistingMethods { int x; - public boolean canEqual(Object other) { + private boolean canEqual(Object other) { return true; } }
\ No newline at end of file |