diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2020-12-27 05:36:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-27 05:36:51 +0100 |
commit | 11b6f8f97a6fde9a5f6e39f38e63cdff73742822 (patch) | |
tree | 733b5a65b754f325fa9273d11fb840a7e0002398 /test/transform/resource/after-ecj/BuilderWithToBuilder.java | |
parent | 0532285eb8de98e9e4e3fc4131476b5f4ef2740d (diff) | |
parent | 624c8a5a52d14ba1a6b690809f9ada15f71e15f5 (diff) | |
download | lombok-11b6f8f97a6fde9a5f6e39f38e63cdff73742822.tar.gz lombok-11b6f8f97a6fde9a5f6e39f38e63cdff73742822.tar.bz2 lombok-11b6f8f97a6fde9a5f6e39f38e63cdff73742822.zip |
Merge pull request #2684 from Rawi01/npe-javadoc
Fix NullPointerException during Javadoc copy
Diffstat (limited to 'test/transform/resource/after-ecj/BuilderWithToBuilder.java')
-rw-r--r-- | test/transform/resource/after-ecj/BuilderWithToBuilder.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/BuilderWithToBuilder.java b/test/transform/resource/after-ecj/BuilderWithToBuilder.java index 857caa17..0ba3e11a 100644 --- a/test/transform/resource/after-ecj/BuilderWithToBuilder.java +++ b/test/transform/resource/after-ecj/BuilderWithToBuilder.java @@ -9,14 +9,23 @@ import lombok.Builder; @java.lang.SuppressWarnings("all") BuilderWithToBuilderBuilder() { super(); } + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") BuilderWithToBuilder.BuilderWithToBuilderBuilder<T> one(final String one) { this.one = one; return this; } + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") BuilderWithToBuilder.BuilderWithToBuilderBuilder<T> two(final String two) { this.two = two; return this; } + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") BuilderWithToBuilder.BuilderWithToBuilderBuilder<T> foo(final T foo) { this.foo = foo; return this; @@ -93,14 +102,23 @@ import lombok.Builder; @java.lang.SuppressWarnings("all") ConstructorWithToBuilderBuilder() { super(); } + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") ConstructorWithToBuilder.ConstructorWithToBuilderBuilder<T> mOne(final String mOne) { this.mOne = mOne; return this; } + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") ConstructorWithToBuilder.ConstructorWithToBuilderBuilder<T> baz(final T baz) { this.baz = baz; return this; } + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") ConstructorWithToBuilder.ConstructorWithToBuilderBuilder<T> bars(final com.google.common.collect.ImmutableList<T> bars) { this.bars = bars; return this; @@ -132,6 +150,9 @@ class StaticMethodWithToBuilder<T> { @java.lang.SuppressWarnings("all") StaticMethodWithToBuilderBuilder() { super(); } + /** + * @return {@code this}. + */ public @java.lang.SuppressWarnings("all") StaticMethodWithToBuilder.StaticMethodWithToBuilderBuilder<T> foo(final T foo) { this.foo = foo; return this; |