diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-08-18 23:44:39 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-08-18 23:44:39 +0200 |
commit | fb551f7311607c266d0288825be0bd6acc4dc590 (patch) | |
tree | 2300742c0d5dfa9fa83d6fe3d0e22ba600c81320 | |
parent | 07f7afe626a2f76d7c5776e0cd97b131107638be (diff) | |
download | lombok-fb551f7311607c266d0288825be0bd6acc4dc590.tar.gz lombok-fb551f7311607c266d0288825be0bd6acc4dc590.tar.bz2 lombok-fb551f7311607c266d0288825be0bd6acc4dc590.zip |
Updated changelog for fix to issue #855
-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 1212b77a..2a2b3607 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -7,6 +7,7 @@ Lombok Changelog * FEATURE: the `hashCode()` method generated by lombok via `@EqualsAndHashCode`, `@Data`, and `@Value` is now smarter about nulls; they are treated as if they hash to a magic prime instead of 0, which reduces hash collisions. * FEATURE: `@NoArgsConstructor(force = true)` can be used to create no args constructors even if final fields are present. * BUGFIX: Parameterized static methods with `@Builder` would produce compiler errors in javac. [Issue #828](https://github.com/rzwitserloot/lombok/issues/828). +* BUGFIX: The new annotations-on-types feature introduced in JDK8 did not delombok correctly. [Issue #855](https://github.com/rzwitserloot/lombok/issues/855). * PERFORMANCE: the config system caused significant slowdowns in eclipse if the filesystem is very slow (network file system) or has a slow authentication system. * BUGFIX: Various quickfixes in Eclipse Mars were broken. [Issue #861](https://github.com/rzwitserloot/lombok/issues/861) [Issue #866](https://github.com/rzwitserloot/lombok/issues/866) [Issue #870](https://github.com/rzwitserloot/lombok/issues/870). |