aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lombok/eclipse/handlers/HandleSneakyThrows.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lombok/eclipse/handlers/HandleSneakyThrows.java b/src/lombok/eclipse/handlers/HandleSneakyThrows.java
index d3104d7a..01b00efb 100644
--- a/src/lombok/eclipse/handlers/HandleSneakyThrows.java
+++ b/src/lombok/eclipse/handlers/HandleSneakyThrows.java
@@ -29,7 +29,6 @@ import org.mangosdk.spi.ProviderFor;
@ProviderFor(EclipseAnnotationHandler.class)
public class HandleSneakyThrows implements EclipseAnnotationHandler<SneakyThrows> {
-
private static class DeclaredException {
final String exceptionName;
final ASTNode node;
@@ -43,6 +42,7 @@ public class HandleSneakyThrows implements EclipseAnnotationHandler<SneakyThrows
return (long)node.sourceStart << 32 | node.sourceEnd;
}
}
+
@Override public boolean handle(AnnotationValues<SneakyThrows> annotation, Annotation ast, Node annotationNode) {
List<String> exceptionNames = annotation.getRawExpressions("value");