diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-06-05 03:50:26 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-06-05 03:50:26 +0200 |
commit | f30485c91fd3f9553fbcbc02d922e6221182c26e (patch) | |
tree | 7aed34032379e4daa2700727a6132a096e48e54f /doc | |
parent | b37a95a6a4fa70da38f990b14a0f9517dd5ed0bc (diff) | |
download | lombok-f30485c91fd3f9553fbcbc02d922e6221182c26e.tar.gz lombok-f30485c91fd3f9553fbcbc02d922e6221182c26e.tar.bz2 lombok-f30485c91fd3f9553fbcbc02d922e6221182c26e.zip |
[#688] Bugfix for eclipse: syntax highlighting would break amongst many other features if using @Setter and most other features.
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 2a3a9577..f928e5ac 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,6 +2,7 @@ Lombok Changelog ---------------- ### v1.14.1 "Edgy Guinea Pig" +* BUGFIX: syntax highlighting in eclipse will become weird and auto-complete may stop working amongst other eclipse features in v1.14.0 (regression from v1.12.6). [Issue #688](https://code.google.com/p/projectlombok/issues/detail?id=688) * FEATURE: Added `@Tolerate`; put this annotation on any method or constructor and lombok will skip it when considering whether or not to generate a method or constructor. This is useful if the types of the parameters of your method do not clash with what lombok would generate. * FEATURE: Added config key `lombok.getter.noIsPrefix`, which lets you disable use and generation of `isFoo()`, instead going with `getFoo()`, for {@code boolean} fields. * BUGFIX: Errors in the eclipse log with `IndexOutOfBound: 2` in `ASTConverter.convertType`. [Issue #686](https://code.google.com/p/projectlombok/issues/detail?id=686) |