aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/ValueCallSuper.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2021-03-13 04:31:51 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2021-03-13 04:31:51 +0100
commitc1bf4ec3b66cf6632cfd3e554d59ad4f8ad1b3b8 (patch)
tree159829e4a0e92995d1a8cccc27fd5b8a4932f797 /test/transform/resource/after-ecj/ValueCallSuper.java
parentbf0de8b6789b6227d226e51b4ae5130b8ba54ae9 (diff)
downloadlombok-c1bf4ec3b66cf6632cfd3e554d59ad4f8ad1b3b8.tar.gz
lombok-c1bf4ec3b66cf6632cfd3e554d59ad4f8ad1b3b8.tar.bz2
lombok-c1bf4ec3b66cf6632cfd3e554d59ad4f8ad1b3b8.zip
[trivial] just fixing line endings - no other changes
Diffstat (limited to 'test/transform/resource/after-ecj/ValueCallSuper.java')
-rw-r--r--test/transform/resource/after-ecj/ValueCallSuper.java64
1 files changed, 32 insertions, 32 deletions
diff --git a/test/transform/resource/after-ecj/ValueCallSuper.java b/test/transform/resource/after-ecj/ValueCallSuper.java
index 2fef08ab..72422a4a 100644
--- a/test/transform/resource/after-ecj/ValueCallSuper.java
+++ b/test/transform/resource/after-ecj/ValueCallSuper.java
@@ -1,32 +1,32 @@
-class ValueParent {
- ValueParent() {
- super();
- }
-}
-final @lombok.Value class ValueCallSuper extends ValueParent {
- public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
- if ((o == this))
- return true;
- if ((! (o instanceof ValueCallSuper)))
- return false;
- final ValueCallSuper other = (ValueCallSuper) o;
- if ((! other.canEqual((java.lang.Object) this)))
- return false;
- if ((! super.equals(o)))
- return false;
- return true;
- }
- protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) {
- return (other instanceof ValueCallSuper);
- }
- public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
- final int result = super.hashCode();
- return result;
- }
- public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
- return "ValueCallSuper()";
- }
- public @java.lang.SuppressWarnings("all") ValueCallSuper() {
- super();
- }
-}
+class ValueParent {
+ ValueParent() {
+ super();
+ }
+}
+final @lombok.Value class ValueCallSuper extends ValueParent {
+ public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
+ if ((o == this))
+ return true;
+ if ((! (o instanceof ValueCallSuper)))
+ return false;
+ final ValueCallSuper other = (ValueCallSuper) o;
+ if ((! other.canEqual((java.lang.Object) this)))
+ return false;
+ if ((! super.equals(o)))
+ return false;
+ return true;
+ }
+ protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) {
+ return (other instanceof ValueCallSuper);
+ }
+ public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
+ final int result = super.hashCode();
+ return result;
+ }
+ public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
+ return "ValueCallSuper()";
+ }
+ public @java.lang.SuppressWarnings("all") ValueCallSuper() {
+ super();
+ }
+}