aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ConflictingStaticConstructorNames.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok/ConflictingStaticConstructorNames.java')
-rw-r--r--test/transform/resource/after-delombok/ConflictingStaticConstructorNames.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ConflictingStaticConstructorNames.java b/test/transform/resource/after-delombok/ConflictingStaticConstructorNames.java
index ae0c46bc..a47fa244 100644
--- a/test/transform/resource/after-delombok/ConflictingStaticConstructorNames.java
+++ b/test/transform/resource/after-delombok/ConflictingStaticConstructorNames.java
@@ -1,6 +1,7 @@
class ConflictingStaticConstructorNames {
@java.lang.Override
@java.lang.SuppressWarnings("all")
+ @javax.annotation.Generated("lombok")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof ConflictingStaticConstructorNames)) return false;
@@ -9,21 +10,25 @@ class ConflictingStaticConstructorNames {
return true;
}
@java.lang.SuppressWarnings("all")
+ @javax.annotation.Generated("lombok")
protected boolean canEqual(final java.lang.Object other) {
return other instanceof ConflictingStaticConstructorNames;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
+ @javax.annotation.Generated("lombok")
public int hashCode() {
int result = 1;
return result;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
+ @javax.annotation.Generated("lombok")
public java.lang.String toString() {
return "ConflictingStaticConstructorNames()";
}
@java.lang.SuppressWarnings("all")
+ @javax.annotation.Generated("lombok")
public ConflictingStaticConstructorNames() {
}
} \ No newline at end of file