diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-04-02 00:58:57 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-04-02 00:59:08 +0200 |
commit | e0c5f3001276b94fd14e7e81e38f72070bda0c4d (patch) | |
tree | ab86e7722a6826ed8a5d60f5af133dc22404efca /src | |
parent | 735ac6e8c256f667b2d742c76029868f086a99d4 (diff) | |
download | lombok-e0c5f3001276b94fd14e7e81e38f72070bda0c4d.tar.gz lombok-e0c5f3001276b94fd14e7e81e38f72070bda0c4d.tar.bz2 lombok-e0c5f3001276b94fd14e7e81e38f72070bda0c4d.zip |
[#655] Added a test for the post compiler. It indeed fails in JDK8 now due to an ASM version that doesn't understand java 8 class files.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/lombok/core/PostCompiler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/core/PostCompiler.java b/src/core/lombok/core/PostCompiler.java index 4a099862..11091cb8 100644 --- a/src/core/lombok/core/PostCompiler.java +++ b/src/core/lombok/core/PostCompiler.java @@ -43,7 +43,7 @@ public final class PostCompiler { previous = next; } } catch (Exception e) { - diagnostics.addWarning(String.format("Error during the transformation of '%s'; post-compiler '%s' caused an exception: %s", fileName, transformation.getClass().getName(), e.getMessage())); + diagnostics.addWarning(String.format("Error during the transformation of '%s'; post-compiler '%s' caused an exception: %s", fileName, transformation.getClass().getName(), e)); } } return previous; |