From 22444b78e2b12680929acf1576b15a0717f267e2 Mon Sep 17 00:00:00 2001 From: JohnPaulTaylorII Date: Wed, 23 Feb 2022 13:29:58 -0500 Subject: Fixes #3120 --- .../EqualsAndHashCodeWithNonNullByDefault.java | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 test/transform/resource/after-delombok/EqualsAndHashCodeWithNonNullByDefault.java (limited to 'test/transform/resource/after-delombok') diff --git a/test/transform/resource/after-delombok/EqualsAndHashCodeWithNonNullByDefault.java b/test/transform/resource/after-delombok/EqualsAndHashCodeWithNonNullByDefault.java new file mode 100644 index 00000000..f83cbc32 --- /dev/null +++ b/test/transform/resource/after-delombok/EqualsAndHashCodeWithNonNullByDefault.java @@ -0,0 +1,45 @@ +import javax.annotation.ParametersAreNonnullByDefault; +@ParametersAreNonnullByDefault +class EqualsAndHashCodeWithNonNullByDefault { + int x; + boolean[] y; + Object[] z; + String a; + String b; + @java.lang.Override + @java.lang.SuppressWarnings("all") + public boolean equals(@javax.annotation.Nullable final java.lang.Object o) { + if (o == this) return true; + if (!(o instanceof EqualsAndHashCodeWithNonNullByDefault)) return false; + final EqualsAndHashCodeWithNonNullByDefault other = (EqualsAndHashCodeWithNonNullByDefault) o; + if (!other.canEqual((java.lang.Object) this)) return false; + if (this.x != other.x) return false; + if (!java.util.Arrays.equals(this.y, other.y)) return false; + if (!java.util.Arrays.deepEquals(this.z, other.z)) return false; + final java.lang.Object this$a = this.a; + final java.lang.Object other$a = other.a; + if (this$a == null ? other$a != null : !this$a.equals(other$a)) return false; + final java.lang.Object this$b = this.b; + final java.lang.Object other$b = other.b; + if (this$b == null ? other$b != null : !this$b.equals(other$b)) return false; + return true; + } + @java.lang.SuppressWarnings("all") + protected boolean canEqual(@javax.annotation.Nullable final java.lang.Object other) { + return other instanceof EqualsAndHashCodeWithNonNullByDefault; + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = result * PRIME + this.x; + result = result * PRIME + java.util.Arrays.hashCode(this.y); + result = result * PRIME + java.util.Arrays.deepHashCode(this.z); + final java.lang.Object $a = this.a; + result = result * PRIME + ($a == null ? 43 : $a.hashCode()); + final java.lang.Object $b = this.b; + result = result * PRIME + ($b == null ? 43 : $b.hashCode()); + return result; + } +} -- cgit From c67909e2039cdac449808464ff28a8e71a56b7a1 Mon Sep 17 00:00:00 2001 From: JohnPaulTaylorII Date: Fri, 25 Feb 2022 16:48:35 -0500 Subject: Fixes #3120 Update AUTHORS file. Remove extraneous code from EqualsAndHashCodeWithNonNullByDefault test case. --- .../EqualsAndHashCodeWithNonNullByDefault.java | 24 +--------------------- 1 file changed, 1 insertion(+), 23 deletions(-) (limited to 'test/transform/resource/after-delombok') diff --git a/test/transform/resource/after-delombok/EqualsAndHashCodeWithNonNullByDefault.java b/test/transform/resource/after-delombok/EqualsAndHashCodeWithNonNullByDefault.java index f83cbc32..37711004 100644 --- a/test/transform/resource/after-delombok/EqualsAndHashCodeWithNonNullByDefault.java +++ b/test/transform/resource/after-delombok/EqualsAndHashCodeWithNonNullByDefault.java @@ -1,11 +1,6 @@ import javax.annotation.ParametersAreNonnullByDefault; @ParametersAreNonnullByDefault class EqualsAndHashCodeWithNonNullByDefault { - int x; - boolean[] y; - Object[] z; - String a; - String b; @java.lang.Override @java.lang.SuppressWarnings("all") public boolean equals(@javax.annotation.Nullable final java.lang.Object o) { @@ -13,15 +8,6 @@ class EqualsAndHashCodeWithNonNullByDefault { if (!(o instanceof EqualsAndHashCodeWithNonNullByDefault)) return false; final EqualsAndHashCodeWithNonNullByDefault other = (EqualsAndHashCodeWithNonNullByDefault) o; if (!other.canEqual((java.lang.Object) this)) return false; - if (this.x != other.x) return false; - if (!java.util.Arrays.equals(this.y, other.y)) return false; - if (!java.util.Arrays.deepEquals(this.z, other.z)) return false; - final java.lang.Object this$a = this.a; - final java.lang.Object other$a = other.a; - if (this$a == null ? other$a != null : !this$a.equals(other$a)) return false; - final java.lang.Object this$b = this.b; - final java.lang.Object other$b = other.b; - if (this$b == null ? other$b != null : !this$b.equals(other$b)) return false; return true; } @java.lang.SuppressWarnings("all") @@ -31,15 +17,7 @@ class EqualsAndHashCodeWithNonNullByDefault { @java.lang.Override @java.lang.SuppressWarnings("all") public int hashCode() { - final int PRIME = 59; - int result = 1; - result = result * PRIME + this.x; - result = result * PRIME + java.util.Arrays.hashCode(this.y); - result = result * PRIME + java.util.Arrays.deepHashCode(this.z); - final java.lang.Object $a = this.a; - result = result * PRIME + ($a == null ? 43 : $a.hashCode()); - final java.lang.Object $b = this.b; - result = result * PRIME + ($b == null ? 43 : $b.hashCode()); + final int result = 1; return result; } } -- cgit