From b8a222006da0a535134c5e7e94282550bfe745b6 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 16 Nov 2015 22:35:40 +0100 Subject: [trivial] updating a new test to account for the fact that the prettyprinter prints casts a bit different. --- .../transform/resource/after-delombok/EqualsAndHashcodeOfExclude.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') 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; } -- cgit