diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-15 04:36:15 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-15 04:36:15 +0100 |
commit | df5324e2d7f2ce12b691954dd79714ad7496b406 (patch) | |
tree | 9188bd163d99fbb8eeaf1301755ce50514e97438 /doc | |
parent | 9a50da2d092f86eef6e00e0f518039ad3ef53ec8 (diff) | |
download | lombok-df5324e2d7f2ce12b691954dd79714ad7496b406.tar.gz lombok-df5324e2d7f2ce12b691954dd79714ad7496b406.tar.bz2 lombok-df5324e2d7f2ce12b691954dd79714ad7496b406.zip |
'val' is no longer legal in basic for loops now. Fixes issue #346
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 f2c99a59..bf9ccab2 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,6 +2,7 @@ Lombok Changelog ---------------- ### v0.10.9 (edge) +* ENHANCEMENT: `val` is no longer legal inside basic for loops (the old kind, not the foreach kind). These variables should rarely be final, and in practice it wasn't possible to delombok this code properly. [Issue #346](http://code.google.com/p/projectlombok/issues/detail?id=346) * FEATURE: The combination of `@Delegate` and `@Getter` or `@Data` will now delegate to the result of a generated getter. [Issue #328](http://code.google.com/p/projectlombok/issues/detail?id=328) ### v0.10.8 (January 19th, 2012) |