diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-02-11 14:21:37 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-02-11 14:21:37 +0100 |
commit | a8dd99d9f080be6839fe507ade104fccac115de4 (patch) | |
tree | bdac391c881b5512dc6bb0b873fd8e457342e083 /doc | |
parent | 39c2903c885f52cb99e36f0a0c896bcca2bc794f (diff) | |
download | lombok-a8dd99d9f080be6839fe507ade104fccac115de4.tar.gz lombok-a8dd99d9f080be6839fe507ade104fccac115de4.tar.bz2 lombok-a8dd99d9f080be6839fe507ade104fccac115de4.zip |
Documenting the fix for issue #2359 by @JanRieke in previous commit in changelog.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 52f55c0b..16e71806 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -3,6 +3,7 @@ Lombok Changelog ### v.18.13 "Edgy Guinea Pig" * FEATURE: Similar to `@Builder`, you can now configure a `@SuperBuilder`'s 'setter' prefixes via `@SuperBuilder(setterPrefix = "set")` for example. We still discourage doing this. [Pull Request #2357](https://github.com/rzwitserloot/lombok/pull/2357). +* BUGFIX: Using `@SuperBuilder` on a class that has some fairly convoluted generics usage would fail with 'Wrong number of type arguments'. [Issue #2359](https://github.com/rzwitserloot/lombok/issues/2359) [Pull Request #2362](https://github.com/rzwitserloot/lombok/pull/2362) ### v1.18.12 (February 1st, 2020) * PLATFORM: Support for JDK13 (including `yield` in switch expressions, as well as delombok having a nicer style for arrow-style switch blocks, and text blocks). |