aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/DataConfiguration.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/DataConfiguration.java')
-rw-r--r--test/transform/resource/after-ecj/DataConfiguration.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/transform/resource/after-ecj/DataConfiguration.java b/test/transform/resource/after-ecj/DataConfiguration.java
index f2733a88..4ca1f093 100644
--- a/test/transform/resource/after-ecj/DataConfiguration.java
+++ b/test/transform/resource/after-ecj/DataConfiguration.java
@@ -1,33 +1,33 @@
@lombok.Data class DataConfiguration {
final int x;
- public @java.lang.SuppressWarnings("all") int getX() {
+ public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") int getX() {
return this.x;
}
- public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
+ public @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") boolean equals(final java.lang.Object o) {
if ((o == this))
return true;
if ((! (o instanceof DataConfiguration)))
return false;
- final @java.lang.SuppressWarnings("all") DataConfiguration other = (DataConfiguration) o;
+ final DataConfiguration other = (DataConfiguration) o;
if ((! other.canEqual((java.lang.Object) this)))
return false;
if ((this.getX() != other.getX()))
return false;
return true;
}
- protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) {
+ protected @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") boolean canEqual(final java.lang.Object other) {
return (other instanceof DataConfiguration);
}
- public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
+ public @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") int hashCode() {
final int PRIME = 59;
int result = 1;
result = ((result * PRIME) + this.getX());
return result;
}
- public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
+ public @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") java.lang.String toString() {
return (("DataConfiguration(x=" + this.getX()) + ")");
}
- public @java.lang.SuppressWarnings("all") DataConfiguration(final int x) {
+ public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") DataConfiguration(final int x) {
super();
this.x = x;
}