diff options
author | Roel Spilker <r.spilker@gmail.com> | 2017-12-12 01:03:51 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2017-12-12 01:04:20 +0100 |
commit | f2530ab37efecf60e9ed1df2ed232822df209e4e (patch) | |
tree | a347b1fd2e923b4b4faf56e6dfe5c1a20eb93555 /doc | |
parent | 0232d99ba646313505536a0663952e9e94340022 (diff) | |
download | lombok-f2530ab37efecf60e9ed1df2ed232822df209e4e.tar.gz lombok-f2530ab37efecf60e9ed1df2ed232822df209e4e.tar.bz2 lombok-f2530ab37efecf60e9ed1df2ed232822df209e4e.zip |
handle @Builder.Default on generic fields. Fixes #1527
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 2672bbc6..fd4af685 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -9,6 +9,7 @@ Lombok Changelog * DEVELOPMENT: Compiling lombok on JDK1.9 is now possible. * BUGFIX: The generated hashCode would break the contract if `callSuper=true,of={}`. [Issue #1505](https://github.com/rzwitserloot/lombok/issues/1505) * BUGFIX: `delombok` no longer prints the synthetic outer-class parameter. [Issue #1521](https://github.com/rzwitserloot/lombok/issues/1521) +* BUGFIX: @Builder.Default now also works when type parameters are present. [Issue #1527](https://github.com/rzwitserloot/lombok/issues/1527) * INSTALLER: By default, the lombok installer now inserts an absolute path in `eclipse.ini` and friends, instead of a relative path. If you want the old behavior, you can use `java -jar -Dlombok.installer.fullpath=false lombok.jar`. ### v1.16.18 (July 3rd, 2017) |