diff options
Diffstat (limited to 'src/core/lombok/eclipse')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleSneakyThrows.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java b/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java index 73940dea..10e92106 100644 --- a/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java +++ b/src/core/lombok/eclipse/handlers/HandleSneakyThrows.java @@ -233,8 +233,7 @@ public class HandleSneakyThrows extends EclipseAnnotationHandler<SneakyThrows> { // Positions for in-method generated nodes are special tryStatement.sourceStart = method.bodyStart; tryStatement.sourceEnd = method.bodyEnd; - tryStatement.sourceStart = pS; - tryStatement.sourceEnd = pE; + return tryStatement; } } |