aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2015-08-16 02:42:43 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2015-08-16 02:42:43 +0200
commit62877ecdb2e5e13a2eb7b67db5292cd13b20cc39 (patch)
treef17bcf43f047845b4fa138929f227129a62819ee /doc
parent059d2b5304514d0ae24dd3444826d2afc315c60f (diff)
parentfd1d18a29957fc1999b7dd5725641662ad3bd887 (diff)
downloadlombok-62877ecdb2e5e13a2eb7b67db5292cd13b20cc39.tar.gz
lombok-62877ecdb2e5e13a2eb7b67db5292cd13b20cc39.tar.bz2
lombok-62877ecdb2e5e13a2eb7b67db5292cd13b20cc39.zip
Merge branch 'force'
Conflicts: doc/changelog.markdown src/core/lombok/eclipse/handlers/HandleBuilder.java
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 14baeb49..1212b77a 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -5,6 +5,7 @@ Lombok Changelog
* FEATURE: `@Helper` can be placed on method-local inner classes to make all methods in the class accessible to the rest of the method. [Full documentation](https://projectlombok.org/features/experimental/Helper.html).
* FEATURE: `@Builder(toBuilder = true)` is now available. It produces an instance method that creates a new builder, initialized with all the values of that instance. For more, read the [Feature page on Builder](https://projectlombok.org/features/Builder.html).
* 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).
* 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).