diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-02 06:37:01 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-02 06:43:48 +0200 |
commit | 964b82124dd92e91652925a450ab9208e41df601 (patch) | |
tree | ef92d5c72f86fc70ceb4e4693b188bedc5e9ed40 /src/core/lombok/eclipse/handlers/HandleSneakyThrows.java | |
parent | cd6eee36cfc10e2dcb1dc12cbaa27db7c0b384a5 (diff) | |
download | lombok-964b82124dd92e91652925a450ab9208e41df601.tar.gz lombok-964b82124dd92e91652925a450ab9208e41df601.tar.bz2 lombok-964b82124dd92e91652925a450ab9208e41df601.zip |
Eclipse handlers can now opt out of being run in diet-parse mode. Fixes Synchronized and SneakyThrows
Diffstat (limited to 'src/core/lombok/eclipse/handlers/HandleSneakyThrows.java')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleSneakyThrows.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java b/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java index 4b36d688..f426b9ce 100644 --- a/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java +++ b/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java @@ -69,6 +69,10 @@ public class HandleSneakyThrows implements EclipseAnnotationHandler<SneakyThrows } } + @Override public boolean deferUntilPostDiet() { + return true; + } + @Override public void handle(AnnotationValues<SneakyThrows> annotation, Annotation source, EclipseNode annotationNode) { List<String> exceptionNames = annotation.getRawExpressions("value"); List<DeclaredException> exceptions = new ArrayList<DeclaredException>(); |