diff options
author | Roel Spilker <r.spilker@gmail.com> | 2012-03-05 20:29:12 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2012-03-05 20:29:12 +0100 |
commit | 1ac79bf86b3a11f34ad7f154f1062541052b114d (patch) | |
tree | 960222ffc14a5236460357d146db4b966d5bc504 /doc | |
parent | 6c5ca79942391d13b59a0d80d45873690af8e446 (diff) | |
download | lombok-1ac79bf86b3a11f34ad7f154f1062541052b114d.tar.gz lombok-1ac79bf86b3a11f34ad7f154f1062541052b114d.tar.bz2 lombok-1ac79bf86b3a11f34ad7f154f1062541052b114d.zip |
Updated changelog
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 9499638b..f0af721c 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -7,6 +7,7 @@ Lombok Changelog * BUGFIX: Using `val` with a type like `Outer<TypeArgs>.Inner` now works. [Issue #343](http://code.google.com/p/projectlombok/issues/detail?id=343) * BUGFIX: `@Getter(lazy=true)` where the variable type is a primitive and the initializing expression is of a different primitive type that would type coerce implicitly, i.e. ints can be assigned to longs without a cast, didn't work before. [Issue #345](http://code.google.com/p/projectlombok/issues/detail?id=345) * BUGFIX: `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) +* BUGFIX: @Delegate would not generate @Deprecated on methods marked deprecated in javadoc [Issue #348](http://code.google.com/p/projectlombok/issues/detail?id=348) ### v0.10.8 (January 19th, 2012) * FEATURE: `@Delegate` can now be used on a no-argument method, which works similarly to adding it to fields. See [documentation](http://projectlombok.org/features/Delegate.html). |