aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-01 05:45:10 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-01 05:45:10 +0200
commit2335f251665d43b4c8cebe00b980f07ef33bdb17 (patch)
tree7ae9ddf76e3a140081d002e0ef985ee72e6f33e1 /doc/changelog.markdown
parentbf0499263b05e11fdd43886df3dc5663c8fee5f4 (diff)
downloadlombok-2335f251665d43b4c8cebe00b980f07ef33bdb17.tar.gz
lombok-2335f251665d43b4c8cebe00b980f07ef33bdb17.tar.bz2
lombok-2335f251665d43b4c8cebe00b980f07ef33bdb17.zip
[fixes #2104] superbuilder + non-list-singulars wouldn’t work due to hardcoded call to emptyList.
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 89ce9929..acaa74de 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -11,6 +11,7 @@ Lombok Changelog
* BUGFIX: Fix for java6 regression if a field has javadoc. [Issue #2066](https://github.com/rzwitserloot/lombok/issues/2066)
* BUGFIX: Delombok now delomboks java10's own `var` as `var` and not as the actual underlying type. [Issue #2049](https://github.com/rzwitserloot/lombok/issues/2049)
* BUGFIX: If you use `@Builder` and manually write the `build()` method in your builder class, javac would error out instead of deferring to your implementation. [Issue #2050](https://github.com/rzwitserloot/lombok/issues/2050) [Issue #2061](https://github.com/rzwitserloot/lombok/issues/2061)
+* BUGFIX: `@SuperBuilder` together with `@Singular` on non-lists would produce an erroneous `emptyList` call. [Issue #2104](https://github.com/rzwitserloot/lombok/issues/2104).
* IMPROBABLE BREAKING CHANGE: For fields and parameters marked non-null, if the method body starts with an assert statement to ensure the value isn't null, no code to throw an exception will be generated.
### v1.18.6 (February 12th, 2019)