diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-20 11:58:56 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-20 11:58:56 +0200 |
commit | d7ee0bc8a5a36e5968741e0e0a445a165b32f1e5 (patch) | |
tree | e5479876073490c3ea86ee5f24e2017ee749341a /doc/changelog.markdown | |
parent | ba7406f05a7b88e06bb1d4c52e9000c85e65387c (diff) | |
download | lombok-d7ee0bc8a5a36e5968741e0e0a445a165b32f1e5.tar.gz lombok-d7ee0bc8a5a36e5968741e0e0a445a165b32f1e5.tar.bz2 lombok-d7ee0bc8a5a36e5968741e0e0a445a165b32f1e5.zip |
@Getter int x, y; used to only apply to 'x', now it applies to both x and y.
Fixes issue #54
Diffstat (limited to 'doc/changelog.markdown')
-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 180ba4f3..9816cfde 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -16,6 +16,7 @@ Lombok Changelog * FEATURE: Constructors generated by lombok now include a `@java.beans.ConstructorProperties` annotation. This does mean these constructors no longer work in java 1.5, as this is a java 1.6 feature. The annotation can be suppressed by setting `suppressConstructorProperties` to `true` in a `@RequiredArgsConstructor` or `@AllArgsConstructor` annotation. [Issue #122](http://code.google.com/p/projectlombok/issues/detail?id=122) * BUGFIX: delombok now no longer forgets to remove `import lombok.AccessLevel;`. In netbeans, that import will no longer be flagged erroneously as being unused. [Issue #100](http://code.google.com/p/projectlombok/issues/detail?id=100) and [Issue #103](http://code.google.com/p/projectlombok/issues/detail?id=103) * BUGFIX: While its discouraged, `import lombok.*;` is supposed to work in the vast majority of cases. In eclipse, however, it didn't. Now it does. [Issue #102](http://code.google.com/p/projectlombok/issues/detail?id=102) +* BUGFIX: When `@Getter` or `@Setter` is applied to a multiple field declaration, such as `@Getter int x, y;`, the annotation now applies to all fields, not just the first. [Issue #54](http://code.google.com/p/projectlombok/issues/detail?id=54) ### v0.9.2 "Hailbunny" (December 15th, 2009) * preliminary support for lombok on NetBeans! - thanks go to Jan Lahoda from NetBeans. [Issue #20](http://code.google.com/p/projectlombok/issues/detail?id=20) |