aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2015-11-16 22:35:40 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2015-11-16 22:35:40 +0100
commitb8a222006da0a535134c5e7e94282550bfe745b6 (patch)
treeaf2342b5efa4554b3e66af583b31265744089c93 /test
parent8db179346171d47230b88cdd509954391fb49d1c (diff)
downloadlombok-b8a222006da0a535134c5e7e94282550bfe745b6.tar.gz
lombok-b8a222006da0a535134c5e7e94282550bfe745b6.tar.bz2
lombok-b8a222006da0a535134c5e7e94282550bfe745b6.zip
[trivial] updating a new test to account for the fact that the prettyprinter prints casts a bit different.
Diffstat (limited to 'test')
-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;
}