diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-21 23:05:28 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-21 23:05:28 +0200 |
commit | 1a9f8f168aa17f77c6e27d0a740b5f7614fb5c90 (patch) | |
tree | 80fdd22607123c6453828f479a5e3fd0a291093c /doc/changelog.markdown | |
parent | 91bb3455da2913c81745d2a7f7e5b42839964f58 (diff) | |
download | lombok-1a9f8f168aa17f77c6e27d0a740b5f7614fb5c90.tar.gz lombok-1a9f8f168aa17f77c6e27d0a740b5f7614fb5c90.tar.bz2 lombok-1a9f8f168aa17f77c6e27d0a740b5f7614fb5c90.zip |
delombok on most javacs would quit with a NoSuchFieldError if it contains <?> style wildcards anywhere in the source. No longer.
Fixes issue #134.
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r-- | doc/changelog.markdown | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index e2425717..f1017790 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -18,6 +18,10 @@ Lombok Changelog * 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) * ENHANCEMENT: generated `toString`, `equals` and `hashCode` methods will now use `this.getX()` and `other.getX()` instead of `this.x` and `other.x` if a suitable getter is available. This behaviour is useful for proxied classes, such as the POJOs that hibernate makes. Usage of the getters can be suppressed with `@ToString/@EqualsAndHashCode(doNotUseGetters = true)`. [Issue #110](http://code.google.com/p/projectlombok/issues/detail?id=110) +* BUGFIX: delombok on most javacs would quit with a NoSuchFieldError if it contains <?> style wildcards anywhere in the source, as well as at least 1 lombok annotation. No longer. [Issue #134](http://code.google.com/p/projectlombok/issues/detail?id=134) + +Fixes issue #134. + ### 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) |