aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r--test/transform/resource/after-delombok/DataExtended.java2
-rw-r--r--test/transform/resource/after-delombok/DataIgnore.java2
-rw-r--r--test/transform/resource/after-delombok/DataOnLocalClass.java10
-rw-r--r--test/transform/resource/after-delombok/DataPlain.java14
-rw-r--r--test/transform/resource/after-delombok/DataWithGetter.java4
-rw-r--r--test/transform/resource/after-delombok/DataWithGetterNone.java4
-rw-r--r--test/transform/resource/after-delombok/GetterLazyEahcToString.java6
7 files changed, 21 insertions, 21 deletions
diff --git a/test/transform/resource/after-delombok/DataExtended.java b/test/transform/resource/after-delombok/DataExtended.java
index be1c3b74..d580b885 100644
--- a/test/transform/resource/after-delombok/DataExtended.java
+++ b/test/transform/resource/after-delombok/DataExtended.java
@@ -17,7 +17,7 @@ class DataExtended {
if (o == this) return true;
if (!(o instanceof DataExtended)) return false;
final DataExtended other = (DataExtended)o;
- if (!other.canEqual(this)) return false;
+ if (!other.canEqual((java.lang.Object)this)) return false;
if (this.getX() != other.getX()) return false;
return true;
}
diff --git a/test/transform/resource/after-delombok/DataIgnore.java b/test/transform/resource/after-delombok/DataIgnore.java
index 9f2a7d79..b74b6a8f 100644
--- a/test/transform/resource/after-delombok/DataIgnore.java
+++ b/test/transform/resource/after-delombok/DataIgnore.java
@@ -16,7 +16,7 @@ class DataIgnore {
if (o == this) return true;
if (!(o instanceof DataIgnore)) return false;
final DataIgnore other = (DataIgnore)o;
- if (!other.canEqual(this)) return false;
+ if (!other.canEqual((java.lang.Object)this)) return false;
if (this.getX() != other.getX()) return false;
return true;
}
diff --git a/test/transform/resource/after-delombok/DataOnLocalClass.java b/test/transform/resource/after-delombok/DataOnLocalClass.java
index 02101a81..ad174b93 100644
--- a/test/transform/resource/after-delombok/DataOnLocalClass.java
+++ b/test/transform/resource/after-delombok/DataOnLocalClass.java
@@ -25,9 +25,9 @@ class DataOnLocalClass1 {
if (o == this) return true;
if (!(o instanceof Local)) return false;
final Local other = (Local)o;
- if (!other.canEqual(this)) return false;
+ 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())) return false;
+ if (this.getName() == null ? other.getName() != null : !this.getName().equals((java.lang.Object)other.getName())) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@@ -79,8 +79,8 @@ class DataOnLocalClass2 {
if (o == this) return true;
if (!(o instanceof InnerLocal)) return false;
final InnerLocal other = (InnerLocal)o;
- if (!other.canEqual(this)) return false;
- if (this.getName() == null ? other.getName() != null : !this.getName().equals(other.getName())) return false;
+ if (!other.canEqual((java.lang.Object)this)) return false;
+ if (this.getName() == null ? other.getName() != null : !this.getName().equals((java.lang.Object)other.getName())) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@@ -115,7 +115,7 @@ class DataOnLocalClass2 {
if (o == this) return true;
if (!(o instanceof Local)) return false;
final Local other = (Local)o;
- if (!other.canEqual(this)) return false;
+ if (!other.canEqual((java.lang.Object)this)) return false;
if (this.getX() != other.getX()) return false;
return true;
}
diff --git a/test/transform/resource/after-delombok/DataPlain.java b/test/transform/resource/after-delombok/DataPlain.java
index 38e006ed..5124fbeb 100644
--- a/test/transform/resource/after-delombok/DataPlain.java
+++ b/test/transform/resource/after-delombok/DataPlain.java
@@ -24,9 +24,9 @@ class Data1 {
if (o == this) return true;
if (!(o instanceof Data1)) return false;
final Data1 other = (Data1)o;
- if (!other.canEqual(this)) return false;
+ 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())) return false;
+ if (this.getName() == null ? other.getName() != null : !this.getName().equals((java.lang.Object)other.getName())) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@@ -74,9 +74,9 @@ class Data2 {
if (o == this) return true;
if (!(o instanceof Data2)) return false;
final Data2 other = (Data2)o;
- if (!other.canEqual(this)) return false;
+ 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())) return false;
+ if (this.getName() == null ? other.getName() != null : !this.getName().equals((java.lang.Object)other.getName())) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@@ -125,7 +125,7 @@ final class Data3 {
if (!(o instanceof Data3)) return false;
final Data3 other = (Data3)o;
if (this.getX() != other.getX()) return false;
- if (this.getName() == null ? other.getName() != null : !this.getName().equals(other.getName())) return false;
+ if (this.getName() == null ? other.getName() != null : !this.getName().equals((java.lang.Object)other.getName())) return false;
return true;
}
@java.lang.Override
@@ -163,7 +163,7 @@ final class Data4 extends java.util.Timer {
if (o == this) return true;
if (!(o instanceof Data4)) return false;
final Data4 other = (Data4)o;
- if (!other.canEqual(this)) return false;
+ if (!other.canEqual((java.lang.Object)this)) return false;
if (!super.equals(o)) return false;
if (this.getX() != other.getX()) return false;
return true;
@@ -192,7 +192,7 @@ class Data5 {
if (o == this) return true;
if (!(o instanceof Data5)) return false;
final Data5 other = (Data5)o;
- if (!other.canEqual(this)) return false;
+ if (!other.canEqual((java.lang.Object)this)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
diff --git a/test/transform/resource/after-delombok/DataWithGetter.java b/test/transform/resource/after-delombok/DataWithGetter.java
index 1e181370..79df7aa1 100644
--- a/test/transform/resource/after-delombok/DataWithGetter.java
+++ b/test/transform/resource/after-delombok/DataWithGetter.java
@@ -21,10 +21,10 @@ class DataWithGetter {
if (o == this) return true;
if (!(o instanceof DataWithGetter)) return false;
final DataWithGetter other = (DataWithGetter)o;
- if (!other.canEqual(this)) return false;
+ 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())) return false;
+ if (this.getZ() == null ? other.getZ() != null : !this.getZ().equals((java.lang.Object)other.getZ())) return false;
return true;
}
@java.lang.SuppressWarnings("all")
diff --git a/test/transform/resource/after-delombok/DataWithGetterNone.java b/test/transform/resource/after-delombok/DataWithGetterNone.java
index b1cab7cf..6b907d37 100644
--- a/test/transform/resource/after-delombok/DataWithGetterNone.java
+++ b/test/transform/resource/after-delombok/DataWithGetterNone.java
@@ -21,10 +21,10 @@ class DataWithGetterNone {
if (o == this) return true;
if (!(o instanceof DataWithGetterNone)) return false;
final DataWithGetterNone other = (DataWithGetterNone)o;
- if (!other.canEqual(this)) return false;
+ 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)) return false;
+ if (this.z == null ? other.z != null : !this.z.equals((java.lang.Object)other.z)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
diff --git a/test/transform/resource/after-delombok/GetterLazyEahcToString.java b/test/transform/resource/after-delombok/GetterLazyEahcToString.java
index f085722d..74ce716e 100644
--- a/test/transform/resource/after-delombok/GetterLazyEahcToString.java
+++ b/test/transform/resource/after-delombok/GetterLazyEahcToString.java
@@ -9,9 +9,9 @@ class GetterLazyEahcToString {
if (o == this) return true;
if (!(o instanceof GetterLazyEahcToString)) return false;
final GetterLazyEahcToString other = (GetterLazyEahcToString)o;
- if (!other.canEqual(this)) return false;
- if (this.getValue() == null ? other.getValue() != null : !this.getValue().equals(other.getValue())) return false;
- if (this.value2 == null ? other.value2 != null : !this.value2.equals(other.value2)) return false;
+ if (!other.canEqual((java.lang.Object)this)) return false;
+ 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((java.lang.Object)other.value2)) return false;
return true;
}