diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-08-01 16:22:37 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-08-01 16:22:37 +0200 |
commit | 383586c70561ff30e6d0211d1bea23a99c800791 (patch) | |
tree | 2f49e44830f06007967299c03a4161ea9ef5e5ac /src/lombok/javac/HandlerLibrary.java | |
parent | 8428be5c680b5b9e89a58a3ea77d134196f52957 (diff) | |
download | lombok-383586c70561ff30e6d0211d1bea23a99c800791.tar.gz lombok-383586c70561ff30e6d0211d1bea23a99c800791.tar.bz2 lombok-383586c70561ff30e6d0211d1bea23a99c800791.zip |
There was a bug in the annotation builder for javac, which would trigger exceptions anytime you used a lombok annotation in implicit-value-parameter form (e.g: @Cleanup("release") instead of @Cleanup or @Cleanup(value="release").
Fixes issue #14
Diffstat (limited to 'src/lombok/javac/HandlerLibrary.java')
-rw-r--r-- | src/lombok/javac/HandlerLibrary.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lombok/javac/HandlerLibrary.java b/src/lombok/javac/HandlerLibrary.java index 7253cbaa..ff21bd3f 100644 --- a/src/lombok/javac/HandlerLibrary.java +++ b/src/lombok/javac/HandlerLibrary.java @@ -146,6 +146,7 @@ public class HandlerLibrary { /** Generates an error in the Messager that was used to initialize this HandlerLibrary. */ public void javacError(String message, Throwable t) { messager.printMessage(Diagnostic.Kind.ERROR, message + (t == null ? "" : (": " + t))); + if ( t != null ) t.printStackTrace(); } /** @@ -180,7 +181,9 @@ public class HandlerLibrary { } catch ( AnnotationValueDecodeFail fail ) { fail.owner.setError(fail.getMessage(), fail.idx); } catch ( Throwable t ) { - javacError(String.format("Lombok annotation handler %s failed", container.handler.getClass()), t); + String sourceName = "(unknown).java"; + if ( unit != null && unit.sourcefile != null ) sourceName = unit.sourcefile.getName(); + javacError(String.format("Lombok annotation handler %s failed on " + sourceName, container.handler.getClass()), t); } } |