diff options
author | Roel Spilker <r.spilker@gmail.com> | 2018-10-15 23:19:55 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2018-10-15 23:19:55 +0200 |
commit | 89294fe03c4257e13971dd9db3738511dc01e433 (patch) | |
tree | da411698bb6f0b35ba74a5c5565ac5624764a3a7 /test/transform/resource/after-ecj/EqualsAndHashCodeExplicitInclude.java | |
parent | 7ee4ebb1a5cd2a002dc522604303b1291a46bddb (diff) | |
download | lombok-89294fe03c4257e13971dd9db3738511dc01e433.tar.gz lombok-89294fe03c4257e13971dd9db3738511dc01e433.tar.bz2 lombok-89294fe03c4257e13971dd9db3738511dc01e433.zip |
add tests to ensure onlyExplicitlyIncluded means nothing if no fields are annotated. Fixes #1772
Diffstat (limited to 'test/transform/resource/after-ecj/EqualsAndHashCodeExplicitInclude.java')
-rw-r--r-- | test/transform/resource/after-ecj/EqualsAndHashCodeExplicitInclude.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/EqualsAndHashCodeExplicitInclude.java b/test/transform/resource/after-ecj/EqualsAndHashCodeExplicitInclude.java new file mode 100644 index 00000000..01d1526c --- /dev/null +++ b/test/transform/resource/after-ecj/EqualsAndHashCodeExplicitInclude.java @@ -0,0 +1,23 @@ +@lombok.EqualsAndHashCode(onlyExplicitlyIncluded = true) class EqualsAndHashCodeExplicitInclude { + int x; + EqualsAndHashCodeExplicitInclude() { + super(); + } + public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { + if ((o == this)) + return true; + if ((! (o instanceof EqualsAndHashCodeExplicitInclude))) + return false; + final EqualsAndHashCodeExplicitInclude other = (EqualsAndHashCodeExplicitInclude) o; + if ((! other.canEqual((java.lang.Object) this))) + return false; + return true; + } + protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) { + return (other instanceof EqualsAndHashCodeExplicitInclude); + } + public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { + int result = 1; + return result; + } +}
\ No newline at end of file |