diff options
author | Roel Spilker <r.spilker@gmail.com> | 2011-11-01 00:53:21 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2011-11-01 00:53:21 +0100 |
commit | 2fcfc4c3dc0b7058fda8aadd9253c3011e967e28 (patch) | |
tree | 2874f7bd6ab04ed022e70dd3eb4e2f35f919a99c /test/transform/resource/after-ecj/DataPlain.java | |
parent | 58f0117d207d3c915f063b3f87a5c9bee5bb6dca (diff) | |
download | lombok-2fcfc4c3dc0b7058fda8aadd9253c3011e967e28.tar.gz lombok-2fcfc4c3dc0b7058fda8aadd9253c3011e967e28.tar.bz2 lombok-2fcfc4c3dc0b7058fda8aadd9253c3011e967e28.zip |
Fixed unit tests to take into account work on issue 289 and 287.
Diffstat (limited to 'test/transform/resource/after-ecj/DataPlain.java')
-rw-r--r-- | test/transform/resource/after-ecj/DataPlain.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/transform/resource/after-ecj/DataPlain.java b/test/transform/resource/after-ecj/DataPlain.java index 0edf164b..0c4a6ab0 100644 --- a/test/transform/resource/after-ecj/DataPlain.java +++ b/test/transform/resource/after-ecj/DataPlain.java @@ -20,7 +20,7 @@ import lombok.Data; return true; if ((! (o instanceof Data1))) return false; - final Data1 other = (Data1) o; + final @java.lang.SuppressWarnings("all") Data1 other = (Data1) o; if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) @@ -64,7 +64,7 @@ import lombok.Data; return true; if ((! (o instanceof Data2))) return false; - final Data2 other = (Data2) o; + final @java.lang.SuppressWarnings("all") Data2 other = (Data2) o; if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) @@ -108,7 +108,7 @@ final @Data class Data3 { return true; if ((! (o instanceof Data3))) return false; - final Data3 other = (Data3) o; + final @java.lang.SuppressWarnings("all") Data3 other = (Data3) o; if ((this.getX() != other.getX())) return false; if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) @@ -139,7 +139,7 @@ final @Data @lombok.EqualsAndHashCode(callSuper = true) class Data4 extends java return true; if ((! (o instanceof Data4))) return false; - final Data4 other = (Data4) o; + final @java.lang.SuppressWarnings("all") Data4 other = (Data4) o; if ((! other.canEqual((java.lang.Object) this))) return false; if ((! super.equals(o))) @@ -171,7 +171,7 @@ final @Data @lombok.EqualsAndHashCode(callSuper = true) class Data4 extends java return true; if ((! (o instanceof Data5))) return false; - final Data5 other = (Data5) o; + final @java.lang.SuppressWarnings("all") Data5 other = (Data5) o; if ((! other.canEqual((java.lang.Object) this))) return false; return true; |