diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-12-19 03:29:42 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-12-19 03:29:42 +0100 |
commit | fac7099e9609d26ac2a455a8bc30c4dbdb003359 (patch) | |
tree | 69534036ebc46b373906b56d38c3490feb336b7f | |
parent | d57a1bc2b952978b14279c83962b1e86201394e4 (diff) | |
download | lombok-fac7099e9609d26ac2a455a8bc30c4dbdb003359.tar.gz lombok-fac7099e9609d26ac2a455a8bc30c4dbdb003359.tar.bz2 lombok-fac7099e9609d26ac2a455a8bc30c4dbdb003359.zip |
[docs] added changelog entry for previous fix
-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 b859c5a8..115ae609 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -4,6 +4,7 @@ Lombok Changelog ### v1.18.11 "Edgy Guinea Pig" * 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). * FEATURE: You can now configure a builder's 'setter' prefixes via `@Builder(setterPrefix = "set")` for example. We discourage doing this, but if some library you use requires them, have at it. [Pull Request #2174](https://github.com/rzwitserloot/lombok/pull/2174], [Issue #1805](https://github.com/rzwitserloot/lombok/issues/1805). +* BUGFIX: Referring to an inner class inside the generics on a class marked with `@SuperBuilder` would cause the error `wrong number of type arguments; required 3` [Issue #2262](https://github.com/rzwitserloot/lombok/issues/2262); fixed by github user [`@Lekanich`](https://github.com/rzwitserloot/lombok/issues/2262) - thank you! ### v1.18.10 (September 10th, 2019) |