diff options
author | grootjans <grootjans@gmail.com> | 2012-07-02 23:22:40 +0200 |
---|---|---|
committer | grootjans <grootjans@gmail.com> | 2012-07-02 23:22:40 +0200 |
commit | c642f8a50cb7863cdf85070722b28b727342be36 (patch) | |
tree | 7c22cbd4e76a678e28195f2621526ee587ddc41a /doc/changelog.markdown | |
parent | 3c0ed22062a83bd6611677ed6625698a769dd4fb (diff) | |
parent | eb22b3fe059486081d2f74afc4e0b80b88411be3 (diff) | |
download | lombok-c642f8a50cb7863cdf85070722b28b727342be36.tar.gz lombok-c642f8a50cb7863cdf85070722b28b727342be36.tar.bz2 lombok-c642f8a50cb7863cdf85070722b28b727342be36.zip |
Merge branch 'master' of github.com:rzwitserloot/lombok
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 7e335751..2aafefc0 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -5,9 +5,11 @@ Lombok Changelog * FEATURE: {Experimental} `@ExtensionMethod` is now available to add extensions to any type in the form of static methods that take as first parameter an object of that type. [Documentation on @ExtensionMethod](http://projectlombok.org/features/experimental/ExtensionMethod.html) * ENHANCEMENT: Small performance enhancements in `equals` and `hashCode`. [Issue #366](http://code.google.com/p/projectlombok/issues/detail?id=366) +* BUGFIX: Eclipse would display and error message regarding an invalid super constructor in the wrong location. [Issue #336](http://code.google.com/p/projectlombok/issues/detail?id=336) * BUGFIX: Eclipse refactor script 'rename method arguments' should work more often with lombok-affected methods. * BUGFIX: Using `val` in an enhanced for loop did not work if the iterable was a raw type. * BUGFIX: Using `@Getter(lazy=true)` when the data type is boolean, int, array, or some other type that requires special treatment for hashCode/equals, now works properly with `@Data`, `@EqualsHashCode` and `@ToString`. [Issue #376](http://code.google.com/p/projectlombok/issues/detail?id=376) +* BUGFIX: `SneakyThrows` in constructor should not wrap this/super call in try-block [Issue #381](http://code.google.com/p/projectlombok/issues/detail?id=381) * FEATURE: ONGOING: Fix for using lombok together with gwt-designer. ### v0.11.0 (March 26th, 2012) |