aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/ValuePlain.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/ValuePlain.java')
-rw-r--r--test/transform/resource/after-ecj/ValuePlain.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/transform/resource/after-ecj/ValuePlain.java b/test/transform/resource/after-ecj/ValuePlain.java
index 8162ab93..442a63ac 100644
--- a/test/transform/resource/after-ecj/ValuePlain.java
+++ b/test/transform/resource/after-ecj/ValuePlain.java
@@ -13,7 +13,7 @@ final @lombok.Value class Value1 {
return true;
if ((! (o instanceof Value1)))
return false;
- final @java.lang.SuppressWarnings("all") Value1 other = (Value1) o;
+ final Value1 other = (Value1) o;
if ((this.getX() != other.getX()))
return false;
final java.lang.Object this$name = this.getName();
@@ -27,13 +27,13 @@ final @lombok.Value class Value1 {
int result = 1;
result = ((result * PRIME) + this.getX());
final java.lang.Object $name = this.getName();
- result = ((result * PRIME) + (($name == null) ? 0 : $name.hashCode()));
+ result = ((result * PRIME) + (($name == null) ? 43 : $name.hashCode()));
return result;
}
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
return (((("Value1(x=" + this.getX()) + ", name=") + this.getName()) + ")");
}
- public @java.beans.ConstructorProperties({"x", "name"}) @java.lang.SuppressWarnings("all") Value1(final int x, final String name) {
+ public @java.lang.SuppressWarnings("all") Value1(final int x, final String name) {
super();
this.x = x;
this.name = name;
@@ -53,7 +53,7 @@ final @lombok.Value class Value1 {
return true;
if ((! (o instanceof Value2)))
return false;
- final @java.lang.SuppressWarnings("all") Value2 other = (Value2) o;
+ final Value2 other = (Value2) o;
if ((! other.canEqual((java.lang.Object) this)))
return false;
if ((this.getX() != other.getX()))
@@ -72,13 +72,13 @@ final @lombok.Value class Value1 {
int result = 1;
result = ((result * PRIME) + this.getX());
final java.lang.Object $name = this.getName();
- result = ((result * PRIME) + (($name == null) ? 0 : $name.hashCode()));
+ result = ((result * PRIME) + (($name == null) ? 43 : $name.hashCode()));
return result;
}
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
return (((("Value2(x=" + this.getX()) + ", name=") + this.getName()) + ")");
}
- public @java.beans.ConstructorProperties({"x", "name"}) @java.lang.SuppressWarnings("all") Value2(final int x, final String name) {
+ public @java.lang.SuppressWarnings("all") Value2(final int x, final String name) {
super();
this.x = x;
this.name = name;
@@ -98,7 +98,7 @@ final @Value class Value3 {
return true;
if ((! (o instanceof Value3)))
return false;
- final @java.lang.SuppressWarnings("all") Value3 other = (Value3) o;
+ final Value3 other = (Value3) o;
if ((this.getX() != other.getX()))
return false;
if ((this.getY() != other.getY()))
@@ -115,7 +115,7 @@ final @Value class Value3 {
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
return (((("Value3(x=" + this.getX()) + ", y=") + this.getY()) + ")");
}
- public @java.beans.ConstructorProperties({"x", "y"}) @java.lang.SuppressWarnings("all") Value3(final int x, final int y) {
+ public @java.lang.SuppressWarnings("all") Value3(final int x, final int y) {
super();
this.x = x;
this.y = y;