aboutsummaryrefslogtreecommitdiff
path: root/test/transform
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform')
-rw-r--r--test/transform/resource/after-delombok/EqualsAndHashcodeOfExclude.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/transform/resource/after-delombok/EqualsAndHashcodeOfExclude.java b/test/transform/resource/after-delombok/EqualsAndHashcodeOfExclude.java
index ae7b8451..2a75430f 100644
--- a/test/transform/resource/after-delombok/EqualsAndHashcodeOfExclude.java
+++ b/test/transform/resource/after-delombok/EqualsAndHashcodeOfExclude.java
@@ -7,7 +7,7 @@ final class EqualsAndHashCodeOf {
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof EqualsAndHashCodeOf)) return false;
- final EqualsAndHashCodeOf other = (EqualsAndHashCodeOf)o;
+ final EqualsAndHashCodeOf other = (EqualsAndHashCodeOf) o;
if (this.x != other.x) return false;
return true;
}
@@ -30,7 +30,7 @@ final class EqualsAndHashCodeExclude {
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof EqualsAndHashCodeExclude)) return false;
- final EqualsAndHashCodeExclude other = (EqualsAndHashCodeExclude)o;
+ final EqualsAndHashCodeExclude other = (EqualsAndHashCodeExclude) o;
if (this.x != other.x) return false;
return true;
}