diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-07-07 21:49:23 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-07-07 21:49:48 +0200 |
commit | 91bfd390e05ed3d04dff6438ffd1bc9e01eb1fff (patch) | |
tree | da0a6611de67080689c030ae50bf99626ea139b2 /doc | |
parent | 85fec0dffa5df13c0cafc86ca762774ba2c4d951 (diff) | |
download | lombok-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.markdown | 1 |
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) |