diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-12-08 06:06:46 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-12-08 06:06:46 +0100 |
commit | c3a3c09f4fd00b83814c1949fa5282ac9c595fa3 (patch) | |
tree | 0e28c636dca33caa09709291e3011cacb008de94 /doc | |
parent | 48404894d8e4c875346677c6f68fff742f314763 (diff) | |
download | lombok-c3a3c09f4fd00b83814c1949fa5282ac9c595fa3.tar.gz lombok-c3a3c09f4fd00b83814c1949fa5282ac9c595fa3.tar.bz2 lombok-c3a3c09f4fd00b83814c1949fa5282ac9c595fa3.zip |
Added support for SpringSource Tool Suite, which, given that its based on eclipse, was just a matter of updating the installer.
Any future tools that are based on eclipse (and eclipse's JDT) should be very easy to add to the installer now.
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 9d98e46d..bcbf4112 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -8,6 +8,7 @@ Lombok Changelog * lombok now has various command-line accessible utilities bundled with it. Run `java -jar lombok.jar --help` to see them. Included (aside from the already mentioned delombok): * Ability to create a tiny jar named lombok-runtime.jar with runtime dependencies. The lombok transformations that have a runtime dependency on this jar can be listed as well. Run `java -jar lombok.jar createRuntime --help` for more information. * Scriptable command line install and uninstall options. Run `java -jar lombok.jar install --help` (or `uninstall`, of course) for more information. Technically this support has been there in earlier versions, but the command line options are now much more lenient, not to mention more visible. +* lombok now works on Springsource Tool Suite. [Issue #22](http://code.google.com/p/projectlombok/issues/detail?id=22) * Erroneous use of lombok in Eclipse (adding it to a project as an annotation processor, which is not how lombok is to be used on Eclipse) now generates a useful warning message with helpful information, instead of a confusing error hidden in the logs. [Issue #53](http://code.google.com/p/projectlombok/issues/detail?id=53) * FIXED: Regression bug where you would occasionally see errors with the gist 'loader constraint violation: when resolving...', such as when opening the help system, starting the diff editor, or, rarely, opening any java source file. [Issue #68](http://code.google.com/p/projectlombok/issues/detail?id=68) * FIXED: @SneakyThrows without any parameters should default to `Throwable.class` but it didn't do anything in javac. [Issue #73](http://code.google.com/p/projectlombok/issues/detail?id=73) |