diff options
author | Jan Rieke <rieke@subshell.com> | 2021-03-12 09:55:44 +0100 |
---|---|---|
committer | Jan Rieke <rieke@subshell.com> | 2021-03-12 09:55:44 +0100 |
commit | 26cc8af4d8b0bc7944b5a7137e9e1c77f2f3cf43 (patch) | |
tree | 3375d5625d4b75483648292d0aaef5c915ea3441 /test/transform/resource/before | |
parent | f8c16ed8ac69d0106a845ca96573557700b6f39d (diff) | |
download | lombok-26cc8af4d8b0bc7944b5a7137e9e1c77f2f3cf43.tar.gz lombok-26cc8af4d8b0bc7944b5a7137e9e1c77f2f3cf43.tar.bz2 lombok-26cc8af4d8b0bc7944b5a7137e9e1c77f2f3cf43.zip |
[fixes #2704] SuperBuilder: avoid NPE on existing constructors
Diffstat (limited to 'test/transform/resource/before')
-rw-r--r-- | test/transform/resource/before/SuperBuilderWithExistingConstuctor.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/transform/resource/before/SuperBuilderWithExistingConstuctor.java b/test/transform/resource/before/SuperBuilderWithExistingConstuctor.java new file mode 100644 index 00000000..13f97632 --- /dev/null +++ b/test/transform/resource/before/SuperBuilderWithExistingConstuctor.java @@ -0,0 +1,5 @@ +@lombok.experimental.SuperBuilder +public class SuperBuilderWithExistingConstuctor { + public SuperBuilderWithExistingConstuctor() { + } +} |