aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-07-07 21:49:23 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-07-07 21:49:48 +0200
commit91bfd390e05ed3d04dff6438ffd1bc9e01eb1fff (patch)
treeda0a6611de67080689c030ae50bf99626ea139b2 /doc
parent85fec0dffa5df13c0cafc86ca762774ba2c4d951 (diff)
downloadlombok-91bfd390e05ed3d04dff6438ffd1bc9e01eb1fff.tar.gz
lombok-91bfd390e05ed3d04dff6438ffd1bc9e01eb1fff.tar.bz2
lombok-91bfd390e05ed3d04dff6438ffd1bc9e01eb1fff.zip
updated docs for new desugaring for getter(lazy=true)
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 e922f8c9..c9dafc61 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,6 +2,7 @@ Lombok Changelog
----------------
### v0.11.9 (Edgy Guinea Pig)
+* CHANGE: The desugaring of @Getter(lazy=true) is now less object creation intensive. Documentation has been updated to reflect what the new desugaring looks like. [@Getter(lazy=true) documentation](http://projectlombok.org/features/GetterLazy.html).
* PROMOTION: `@Value` has been promoted from experimental to the main package with no changes. The 'old' experimental one is still around but is deprecated, and is an alias for the new main package one. [@Value documentation](http://projectlombok.org/features/Value.html).
* FEATURE: {Experimental} `@Builder` support. One of our earliest feature request issues, [Issue #16](https://code.google.com/p/projectlombok/issues/detail?id=16), has finally been addressed. [@Builder documentation](http://projectlombok.org/features/experimental/Builder.html).
* FEATURE: `@NonNull` on a method or constructor parameter now generates a null-check statement at the start of your method. This nullcheck will throw a `NullPointerException` with the name of the parameter as the message. [Issue #514](https://code.google.com/p/projectlombok/issues/detail?id=514)