diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-10-25 19:39:08 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-10-25 19:39:08 +0200 |
commit | 16661be2d99359c94569620e1daf2362d5356341 (patch) | |
tree | cca9a8062623818a3a995a7c86f228e023448f02 /doc | |
parent | 7f7d1eed36f605cc7ca0e7af81ea9caf895e7b73 (diff) | |
download | lombok-16661be2d99359c94569620e1daf2362d5356341.tar.gz lombok-16661be2d99359c94569620e1daf2362d5356341.tar.bz2 lombok-16661be2d99359c94569620e1daf2362d5356341.zip |
Fixed issue 289: non-static inner classes whose outer class has generics can't be @EqualsAndHashCode marked.
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 e48f5a06..111d00e9 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -3,6 +3,7 @@ Lombok Changelog ### v0.10.2 (edge) * BUGFIX: Turns out treating `@NotNull` as an annotation that indicates lombok should generate nullcheck guards causes all sorts of problems. This has been removed again, and documentation has been updated to reflect this. [Issue #287](http://code.google.com/p/projectlombok/issues/detail?id=287) +* BUGFIX: `@EqualsAndHashCode` or `@Data` did not work on non-static inner classes whose outer class has a type variable. It does now. [Issue #289](http://code.google.com/p/projectlombok/issues/detail?id=289) ### v0.10.1 (October 3rd, 2011) * BUGFIX: `@Delegate` in eclipse could cause memory leaks in 0.10.0. [Issue #264](http://code.google.com/p/projectlombok/issues/detail?id=264) |