diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-08-28 00:16:58 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-08-28 00:16:58 +0200 |
commit | e92fd5abac039cfc1f47a030dc0f084e9f018b8b (patch) | |
tree | c4cb63fea756f26cacaf79065048baa75250ff58 /doc/changelog.markdown | |
parent | 0236721d8d3cde431d0a40995a61e4fd3fe14be1 (diff) | |
download | lombok-e92fd5abac039cfc1f47a030dc0f084e9f018b8b.tar.gz lombok-e92fd5abac039cfc1f47a030dc0f084e9f018b8b.tar.bz2 lombok-e92fd5abac039cfc1f47a030dc0f084e9f018b8b.zip |
Fixes issue #35: ToString now defaults to includeFieldNames=true.
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 fe39a509..58d6957a 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -5,6 +5,7 @@ Lombok Changelog * 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). +* @ToString (and hence, @Data) now default to includeFieldNames=true. [Issue #35](http://code.google.com/p/projectlombok/issues/detail?id=35) ### v0.8.3 |