diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-04-14 21:54:04 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-04-14 21:54:04 +0200 |
commit | de816ebbcde3daea556e250c85723c867221016f (patch) | |
tree | c3eb3b93df8082d94a1cf5edfe7c173717359d58 /test/transform/resource/after-ecj/UtilityClassErrors.java | |
parent | a4441fb931fe1711d410b3b769e0f140b8c9670e (diff) | |
download | lombok-de816ebbcde3daea556e250c85723c867221016f.tar.gz lombok-de816ebbcde3daea556e250c85723c867221016f.tar.bz2 lombok-de816ebbcde3daea556e250c85723c867221016f.zip |
[i804] @UtilityClass fails to properly initialize fields (which @UtilityClass makes static) with initializers, in eclipse.
also updates the changelog more generally, it was lacking some recent work.
Diffstat (limited to 'test/transform/resource/after-ecj/UtilityClassErrors.java')
-rw-r--r-- | test/transform/resource/after-ecj/UtilityClassErrors.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/UtilityClassErrors.java b/test/transform/resource/after-ecj/UtilityClassErrors.java index 26b331a1..b5a51313 100644 --- a/test/transform/resource/after-ecj/UtilityClassErrors.java +++ b/test/transform/resource/after-ecj/UtilityClassErrors.java @@ -1,5 +1,7 @@ final @lombok.experimental.UtilityClass class UtilityClassErrors1 { private static String someField; + <clinit>() { + } protected UtilityClassErrors1() { super(); } |