diff options
Diffstat (limited to 'test/transform/resource/after-ecj')
7 files changed, 21 insertions, 21 deletions
diff --git a/test/transform/resource/after-ecj/DataExtended.java b/test/transform/resource/after-ecj/DataExtended.java index 10a66547..924fe8da 100644 --- a/test/transform/resource/after-ecj/DataExtended.java +++ b/test/transform/resource/after-ecj/DataExtended.java @@ -15,7 +15,7 @@ if ((! (o instanceof DataExtended))) return false; final DataExtended other = (DataExtended) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; diff --git a/test/transform/resource/after-ecj/DataIgnore.java b/test/transform/resource/after-ecj/DataIgnore.java index 13c8e2f7..fb700ee2 100644 --- a/test/transform/resource/after-ecj/DataIgnore.java +++ b/test/transform/resource/after-ecj/DataIgnore.java @@ -14,7 +14,7 @@ if ((! (o instanceof DataIgnore))) return false; final DataIgnore other = (DataIgnore) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; diff --git a/test/transform/resource/after-ecj/DataOnLocalClass.java b/test/transform/resource/after-ecj/DataOnLocalClass.java index b987b967..6c85fae7 100644 --- a/test/transform/resource/after-ecj/DataOnLocalClass.java +++ b/test/transform/resource/after-ecj/DataOnLocalClass.java @@ -26,11 +26,11 @@ class DataOnLocalClass1 { if ((! (o instanceof Local))) return false; final Local other = (Local) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals(other.getName())))) + if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) return false; return true; } @@ -75,9 +75,9 @@ class DataOnLocalClass2 { if ((! (o instanceof InnerLocal))) return false; final InnerLocal other = (InnerLocal) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals(other.getName())))) + if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) return false; return true; } @@ -108,7 +108,7 @@ class DataOnLocalClass2 { if ((! (o instanceof Local))) return false; final Local other = (Local) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; diff --git a/test/transform/resource/after-ecj/DataPlain.java b/test/transform/resource/after-ecj/DataPlain.java index 4dbac075..0edf164b 100644 --- a/test/transform/resource/after-ecj/DataPlain.java +++ b/test/transform/resource/after-ecj/DataPlain.java @@ -21,11 +21,11 @@ import lombok.Data; if ((! (o instanceof Data1))) return false; final Data1 other = (Data1) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals(other.getName())))) + if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) return false; return true; } @@ -65,11 +65,11 @@ import lombok.Data; if ((! (o instanceof Data2))) return false; final Data2 other = (Data2) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals(other.getName())))) + if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) return false; return true; } @@ -111,7 +111,7 @@ final @Data class Data3 { final Data3 other = (Data3) o; if ((this.getX() != other.getX())) return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals(other.getName())))) + if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) return false; return true; } @@ -140,7 +140,7 @@ final @Data @lombok.EqualsAndHashCode(callSuper = true) class Data4 extends java if ((! (o instanceof Data4))) return false; final Data4 other = (Data4) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((! super.equals(o))) return false; @@ -172,7 +172,7 @@ final @Data @lombok.EqualsAndHashCode(callSuper = true) class Data4 extends java if ((! (o instanceof Data5))) return false; final Data5 other = (Data5) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; return true; } diff --git a/test/transform/resource/after-ecj/DataWithGetter.java b/test/transform/resource/after-ecj/DataWithGetter.java index 904ae0fa..d409382d 100644 --- a/test/transform/resource/after-ecj/DataWithGetter.java +++ b/test/transform/resource/after-ecj/DataWithGetter.java @@ -18,13 +18,13 @@ if ((! (o instanceof DataWithGetter))) return false; final DataWithGetter other = (DataWithGetter) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; if ((this.getY() != other.getY())) return false; - if (((this.getZ() == null) ? (other.getZ() != null) : (! this.getZ().equals(other.getZ())))) + if (((this.getZ() == null) ? (other.getZ() != null) : (! this.getZ().equals((java.lang.Object) other.getZ())))) return false; return true; } diff --git a/test/transform/resource/after-ecj/DataWithGetterNone.java b/test/transform/resource/after-ecj/DataWithGetterNone.java index 0172f4f3..2380865b 100644 --- a/test/transform/resource/after-ecj/DataWithGetterNone.java +++ b/test/transform/resource/after-ecj/DataWithGetterNone.java @@ -18,13 +18,13 @@ if ((! (o instanceof DataWithGetterNone))) return false; final DataWithGetterNone other = (DataWithGetterNone) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.x != other.x)) return false; if ((this.y != other.y)) return false; - if (((this.z == null) ? (other.z != null) : (! this.z.equals(other.z)))) + if (((this.z == null) ? (other.z != null) : (! this.z.equals((java.lang.Object) other.z)))) return false; return true; } diff --git a/test/transform/resource/after-ecj/GetterLazyEahcToString.java b/test/transform/resource/after-ecj/GetterLazyEahcToString.java index 6261ce38..dc732861 100644 --- a/test/transform/resource/after-ecj/GetterLazyEahcToString.java +++ b/test/transform/resource/after-ecj/GetterLazyEahcToString.java @@ -26,11 +26,11 @@ if ((! (o instanceof GetterLazyEahcToString))) return false; final GetterLazyEahcToString other = (GetterLazyEahcToString) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; - if (((this.getValue() == null) ? (other.getValue() != null) : (! this.getValue().equals(other.getValue())))) + if (((this.getValue() == null) ? (other.getValue() != null) : (! this.getValue().equals((java.lang.Object) other.getValue())))) return false; - if (((this.value2 == null) ? (other.value2 != null) : (! this.value2.equals(other.value2)))) + if (((this.value2 == null) ? (other.value2 != null) : (! this.value2.equals((java.lang.Object) other.value2)))) return false; return true; } |
