diff options
Diffstat (limited to 'test/transform/resource/after-eclipse/EqualsAndHashCodeWithExistingMethods.java')
-rw-r--r-- | test/transform/resource/after-eclipse/EqualsAndHashCodeWithExistingMethods.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/test/transform/resource/after-eclipse/EqualsAndHashCodeWithExistingMethods.java b/test/transform/resource/after-eclipse/EqualsAndHashCodeWithExistingMethods.java deleted file mode 100644 index 50b219f1..00000000 --- a/test/transform/resource/after-eclipse/EqualsAndHashCodeWithExistingMethods.java +++ /dev/null @@ -1,27 +0,0 @@ -@lombok.EqualsAndHashCode class EqualsAndHashCodeWithExistingMethods { - int x; - EqualsAndHashCodeWithExistingMethods() { - super(); - } - public int hashCode() { - return 42; - } -} -final @lombok.EqualsAndHashCode class EqualsAndHashCodeWithExistingMethods2 { - int x; - EqualsAndHashCodeWithExistingMethods2() { - super(); - } - public boolean equals(Object other) { - return false; - } -} -final @lombok.EqualsAndHashCode(callSuper = true) class EqualsAndHashCodeWithExistingMethods3 extends EqualsAndHashCodeWithExistingMethods { - int x; - EqualsAndHashCodeWithExistingMethods3() { - super(); - } - public boolean canEqual(Object other) { - return true; - } -}
\ No newline at end of file |