From 624c8a5a52d14ba1a6b690809f9ada15f71e15f5 Mon Sep 17 00:00:00 2001 From: Rawi01 Date: Mon, 21 Dec 2020 17:07:22 +0100 Subject: [fixes #2682] Fix NPE, always add Javadoc return statement --- test/transform/resource/after-ecj/SuperBuilderWithDefaults.java | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/transform/resource/after-ecj/SuperBuilderWithDefaults.java') diff --git a/test/transform/resource/after-ecj/SuperBuilderWithDefaults.java b/test/transform/resource/after-ecj/SuperBuilderWithDefaults.java index 03bfd319..72079b2f 100644 --- a/test/transform/resource/after-ecj/SuperBuilderWithDefaults.java +++ b/test/transform/resource/after-ecj/SuperBuilderWithDefaults.java @@ -11,11 +11,17 @@ public class SuperBuilderWithDefaults { } protected abstract @java.lang.SuppressWarnings("all") B self(); public abstract @java.lang.SuppressWarnings("all") C build(); + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") B millis(final long millis) { this.millis$value = millis; millis$set = true; return self(); } + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") B numberField(final N numberField) { this.numberField$value = numberField; numberField$set = true; @@ -68,6 +74,9 @@ public class SuperBuilderWithDefaults { } protected abstract @java.lang.Override @java.lang.SuppressWarnings("all") B self(); public abstract @java.lang.Override @java.lang.SuppressWarnings("all") C build(); + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") B doubleField(final double doubleField) { this.doubleField$value = doubleField; doubleField$set = true; -- cgit