aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
diff options
context:
space:
mode:
authorJan Rieke <rieke@subshell.com>2022-07-18 08:15:30 +0200
committerJan Rieke <rieke@subshell.com>2022-07-18 08:30:26 +0200
commitd2ae62ac71ebf55406d308dc41e76f36e7cb5ea8 (patch)
tree7a6a23cd22742c972c56657a6bcb6175757f23b9 /test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
parent588a4a88c19103670bffb4bcc81fc203379253e9 (diff)
downloadlombok-d2ae62ac71ebf55406d308dc41e76f36e7cb5ea8.tar.gz
lombok-d2ae62ac71ebf55406d308dc41e76f36e7cb5ea8.tar.bz2
lombok-d2ae62ac71ebf55406d308dc41e76f36e7cb5ea8.zip
fix all SuperBuilder tests (changed order of generated methods)
Diffstat (limited to 'test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java')
-rw-r--r--test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java b/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
index 88db8511..a82e2eac 100644
--- a/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
+++ b/test/transform/resource/after-delombok/SuperBuilderWithSetterPrefix.java
@@ -37,10 +37,6 @@ public class SuperBuilderWithSetterPrefix {
b.withObtainViaStaticMethod(SuperBuilderWithSetterPrefix.Parent.staticMethod(instance));
b.withItems(instance.items == null ? java.util.Collections.<String>emptyList() : instance.items);
}
- @java.lang.SuppressWarnings("all")
- protected abstract B self();
- @java.lang.SuppressWarnings("all")
- public abstract C build();
/**
* @return {@code this}.
*/
@@ -93,6 +89,10 @@ public class SuperBuilderWithSetterPrefix {
if (this.items != null) this.items.clear();
return self();
}
+ @java.lang.SuppressWarnings("all")
+ protected abstract B self();
+ @java.lang.SuppressWarnings("all")
+ public abstract C build();
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
@@ -160,12 +160,6 @@ public class SuperBuilderWithSetterPrefix {
private static void $fillValuesFromInstanceIntoBuilder(final SuperBuilderWithSetterPrefix.Child instance, final SuperBuilderWithSetterPrefix.Child.ChildBuilder<?, ?> b) {
b.setField3(instance.field3);
}
- @java.lang.Override
- @java.lang.SuppressWarnings("all")
- protected abstract B self();
- @java.lang.Override
- @java.lang.SuppressWarnings("all")
- public abstract C build();
/**
* @return {@code this}.
*/
@@ -176,6 +170,12 @@ public class SuperBuilderWithSetterPrefix {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
+ protected abstract B self();
+ @java.lang.Override
+ @java.lang.SuppressWarnings("all")
+ public abstract C build();
+ @java.lang.Override
+ @java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "SuperBuilderWithSetterPrefix.Child.ChildBuilder(super=" + super.toString() + ", field3=" + this.field3 + ")";
}