diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-07-22 04:40:19 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-07-22 04:40:19 +0200 |
commit | fd1d18a29957fc1999b7dd5725641662ad3bd887 (patch) | |
tree | 0795b1970d09ba39e97133afaba35370799b8b41 /doc/changelog.markdown | |
parent | 334580ee548ddb09e34564183aba5008fdb29a22 (diff) | |
download | lombok-fd1d18a29957fc1999b7dd5725641662ad3bd887.tar.gz lombok-fd1d18a29957fc1999b7dd5725641662ad3bd887.tar.bz2 lombok-fd1d18a29957fc1999b7dd5725641662ad3bd887.zip |
Support for @NoArgsConstructor(force = true).
Diffstat (limited to 'doc/changelog.markdown')
-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 ae8b07ab..d1fcb777 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,6 +2,7 @@ Lombok Changelog ---------------- ### v1.16.5 "Edgy Guinea Pig" +* 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). * PERFORMANCE: the config system caused significant slowdowns in eclipse if the filesystem is very slow (network file system) or has a slow authentication system. * 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. |