aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-06-02 06:37:01 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-06-02 06:43:48 +0200
commit964b82124dd92e91652925a450ab9208e41df601 (patch)
treeef92d5c72f86fc70ceb4e4693b188bedc5e9ed40 /src/core/lombok/eclipse/handlers/HandleSneakyThrows.java
parentcd6eee36cfc10e2dcb1dc12cbaa27db7c0b384a5 (diff)
downloadlombok-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.java4
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>();