aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2014-04-29 22:00:30 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2014-04-29 22:00:30 +0200
commit5fcb9284c13e58750ec6c36a1eae5869a5a52925 (patch)
treeba296b4d4d0e92ae724e6568dddd679357e7905a /doc
parentf93478e7b56494ce86e9ea7d4585f288489073e0 (diff)
downloadlombok-5fcb9284c13e58750ec6c36a1eae5869a5a52925.tar.gz
lombok-5fcb9284c13e58750ec6c36a1eae5869a5a52925.tar.bz2
lombok-5fcb9284c13e58750ec6c36a1eae5869a5a52925.zip
added docs for the new onParam feature on EqualsAndHashCode, and some tiny stylistic nitpicking.
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 21475d79..8ac2fb9c 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,6 +2,7 @@ Lombok Changelog
----------------
### v1.12.7 "Edgy Guinea Pig"
+* FEATURE: It is now possible to put annotations, such as `@Nullable`, on the one parameter of generated `equals()` methods by specifying the `onParam=` option on `@EqualsAndHashCode`, similar to how that feature already exists for `@Setter`. [Issue #674](https://code.google.com/p/projectlombok/issues/detail?id=674)
* CHANGE: suppressConstructorProperties should now be configured via lombok configuration. [Issue #659](https://code.google.com/p/projectlombok/issues/detail?id=659)
* CHANGE: The `canEqual` method generated by `@EqualsAndHashCode`, `@Value` and `@Data` is now `protected` instead of `public`. [Issue #660](https://code.google.com/p/projectlombok/issues/detail?id=660)
* BUGFIX: Deadlocks would occasionally occur in eclipse when using lazy getters [Issue #590](https://code.google.com/p/projectlombok/issues/detail?id=590)