diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-08-14 04:06:43 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-08-14 04:06:43 +0200 |
commit | 81cfc844b90d347c01ec9e68dcd7554a75caa733 (patch) | |
tree | 7f6234f645f83718d5aec20e0a9e7f45dbc6e043 | |
parent | 2043399d3916cf5c1b34b9552394f25d58068008 (diff) | |
download | lombok-81cfc844b90d347c01ec9e68dcd7554a75caa733.tar.gz lombok-81cfc844b90d347c01ec9e68dcd7554a75caa733.tar.bz2 lombok-81cfc844b90d347c01ec9e68dcd7554a75caa733.zip |
Changelog for fix to issue 140
-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 7c5ff02b..27d4608c 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -3,6 +3,7 @@ Lombok Changelog ### v0.9.4 (edge) * BUGFIX: `@Setter` and `@Getter` can now be applied to static fields again (was broken in v0.9.3 only). [Issue #136](http://code.google.com/p/projectlombok/issues/detail?id=136) +* BUGFIX: delombok added type parameters to constructors that mirror the type's own type parameters. This resulted in delombok turning any generated constructor that takes at least 1 parameter of type 'T' into something that didn't compile, and to boot, a confusing error message ('T is not compatible with T'). This is now fixed. [Issue #140](http://code.google.com/p/projectlombok/issues/detail?id=140) ### v0.9.3 "Burrowing Whale" (July 25th, 2010) * FEATURE: Adding `@Getter` or `@Setter` to a class is now legal and is like adding those annotations to every non-static field in it. [Issue #129](http://code.google.com/p/projectlombok/issues/detail?id=129) |