diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-02 01:12:29 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-02 01:12:29 +0200 |
commit | c66654505fc53c31e7cb5d5dc5f4190e1d99d027 (patch) | |
tree | 756360620d87a685e2a7e1b59b246d082a4730be /doc/changelog.markdown | |
parent | cb4c8ca4a1392844cd01b573e53b7926c1374872 (diff) | |
download | lombok-c66654505fc53c31e7cb5d5dc5f4190e1d99d027.tar.gz lombok-c66654505fc53c31e7cb5d5dc5f4190e1d99d027.tar.bz2 lombok-c66654505fc53c31e7cb5d5dc5f4190e1d99d027.zip |
There was an issue for that last fix (of @SneakyThrows in eclipse), so added an explanation plus a link to the issue to the changelog.
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r-- | doc/changelog.markdown | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 6ffc14cc..40a595ed 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -3,6 +3,8 @@ Lombok Changelog ### v0.8.4 +* Fixed many issues with `@SneakyThrows` - in previous versions, using it would sometimes confuse the syntax colouring, and various constructs in the annotated method would cause outright eclipse errors, such as beginning the method with a try block. This also fixes [Issue #30](http://code.google.com/p/projectlombok/issues/detail?id=30) +* Fixed the David Lynch bug - in eclipse, classes with lombok features used in them would sometimes appear invisible from other source files. It's described in more detail on [Issue #41](http://code.google.com/p/projectlombok/issues/detail?id=41). If you suffered from it, you'll know what this is about. * Fixed the problem where eclipse's help system did not start up on lombokized eclipses. [Issue #26](http://code.google.com/p/projectlombok/issues/detail?id=26) * All generated methods now make their parameters (if they have any) final. This should help avoid problems with the 'make all parameters final' save action in eclipse. [Issue #40](http://code.google.com/p/projectlombok/issues/detail?id=40) * Okay, this time _really_ added support for @NonNull and @NotNull annotations. It was reported for v0.8.3 but it wasn't actually in that release. @Nullable annotations are now also copied over to the getter's return type and the setter and constructor's parameters (but, obviously, no check is added). Any @NonNull annotated non-final fields that are not initialized are now also added to the generated constructor by @Data in order to ensure via an explicit null check that they contain a legal value. |