diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-07-25 22:04:52 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-07-25 22:04:52 +0200 |
commit | 7c3724c9dc03684b9e4ecb9b33296c894138add6 (patch) | |
tree | e8ffe4f0e0f885671abddef349cbb9b2738623b7 /doc | |
parent | 5ec61bb62d3dd2d9509ade090e750dd43e36c0f3 (diff) | |
download | lombok-7c3724c9dc03684b9e4ecb9b33296c894138add6.tar.gz lombok-7c3724c9dc03684b9e4ecb9b33296c894138add6.tar.bz2 lombok-7c3724c9dc03684b9e4ecb9b33296c894138add6.zip |
[Fixes issue #1783] lombok.var / lombok.experimental.var import would be removed by eclipse’s organize imports.
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 a77dbb3d..e6392c53 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -4,6 +4,7 @@ Lombok Changelog ### v1.18.1 "Edgy Guinea Pig" * BUGFIX: mapstruct + lombok in eclipse should hopefully work again. [Issue #1359](https://github.com/rzwitserloot/lombok/issues/1359) and [mapstruct issue #1159](https://github.com/mapstruct/mapstruct/issues/1159) * BUGFIX: Equals and hashCode again exclude transient fields by default. [Issue #1724](https://github.com/rzwitserloot/lombok/issues/1724) +* BUGFIX: Eclipse 'organize imports' feature (either explicitly, or if automatically triggered on saving via 'save actions') would remove the import for `lombok.var`. [Issue #1783](https://github.com/rzwitserloot/lombok/issues/1783) * FEATURE: You can now make builders for type hierarchies, using the new (experimental) `@SuperBuilder` annotation. Thanks for the contribution, Jan Rieke. [`@SuperBuilder` documentation](https://projectlombok.org/features/experimental/SuperBuilder) * FEATURE: `@NoArgsConstructor`, including forcing one with `lombok.config: lombok.noArgsConstructor.extraPrivate=true` now take any defaults set with `@Builder.Default` into account. [Issue #1347](https://github.com/rzwitserloot/lombok/issues/1347) |