[i660] canEqual is now protected instead of public.

Also fixed the total lack of canEqual in the usage examples.
This commit is contained in:
Roel Spilker
2014-03-26 21:11:30 +01:00
parent db71f39c27
commit 4d24542dac
42 changed files with 160 additions and 81 deletions
@@ -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;
}
}