aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj
diff options
context:
space:
mode:
authorJan Rieke <rieke@subshell.com>2018-05-31 14:41:40 +0200
committerJan Rieke <rieke@subshell.com>2018-05-31 14:41:40 +0200
commit65b248ec62ffe87d9f4fe234c47f786f420d58dc (patch)
tree561d6997a6f886d7674099990513707cd14f3c29 /test/transform/resource/after-ecj
parent1e87330f1825f1072fd2ce7eba15fb10e9e080e7 (diff)
downloadlombok-65b248ec62ffe87d9f4fe234c47f786f420d58dc.tar.gz
lombok-65b248ec62ffe87d9f4fe234c47f786f420d58dc.tar.bz2
lombok-65b248ec62ffe87d9f4fe234c47f786f420d58dc.zip
fixed expected test results
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r--test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java b/test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java
index 2f4048d6..119fb5bb 100644
--- a/test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java
+++ b/test/transform/resource/after-ecj/SuperBuilderWithCustomBuilderMethod.java
@@ -28,7 +28,7 @@ public class SuperBuilderWithCustomBuilderMethod {
return self();
}
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
- return (((("SuperBuilderWithGenerics.Parent.ParentBuilder(field1=" + this.field1) + ", items=") + this.items) + ")");
+ return (((("SuperBuilderWithCustomBuilderMethod.Parent.ParentBuilder(field1=" + this.field1) + ", items=") + this.items) + ")");
}
}
private static final @java.lang.SuppressWarnings("all") class ParentBuilderImpl<A> extends ParentBuilder<A, Parent<A>, ParentBuilderImpl<A>> {
@@ -72,7 +72,7 @@ public class SuperBuilderWithCustomBuilderMethod {
return self();
}
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
- return (((("SuperBuilderWithGenerics.Child.ChildBuilder(super=" + super.toString()) + ", field3=") + this.field3) + ")");
+ return (((("SuperBuilderWithCustomBuilderMethod.Child.ChildBuilder(super=" + super.toString()) + ", field3=") + this.field3) + ")");
}
}
private static final @java.lang.SuppressWarnings("all") class ChildBuilderImpl<A> extends ChildBuilder<A, Child<A>, ChildBuilderImpl<A>> {
@@ -86,15 +86,15 @@ public class SuperBuilderWithCustomBuilderMethod {
}
}
double field3;
+ public static <A>ChildBuilder<A, ?, ?> builder() {
+ return new ChildBuilderImpl<A>().item("default item");
+ }
protected @java.lang.SuppressWarnings("all") Child(final ChildBuilder<A, ?, ?> b) {
super(b);
this.field3 = b.field3;
}
- public static @java.lang.SuppressWarnings("all") <A>ChildBuilder<A, ?, ?> builder() {
- return new ChildBuilderImpl<A>().item("default item");
- }
}
- public SuperBuilderWithGenerics() {
+ public SuperBuilderWithCustomBuilderMethod() {
super();
}
public static void test() {