diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-01 22:36:35 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-01 22:36:35 +0200 |
commit | d174201c7f911e3752661a33ce6360a4240f8366 (patch) | |
tree | dfa6a5e478e4c63f9f03f84ae39dea12057bfe6c /src/lombok | |
parent | 99d9728ede23aade67fdce4412a91bc58f5ab3dc (diff) | |
download | lombok-d174201c7f911e3752661a33ce6360a4240f8366.tar.gz lombok-d174201c7f911e3752661a33ce6360a4240f8366.tar.bz2 lombok-d174201c7f911e3752661a33ce6360a4240f8366.zip |
[TRIVIAL]
Diffstat (limited to 'src/lombok')
-rw-r--r-- | src/lombok/eclipse/handlers/HandleSneakyThrows.java | 2 |
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"); |