From b5c8b725655d2ad8a715cfb1fbbdf25dbdcd4ceb Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 16 Oct 2009 09:32:36 +0200 Subject: Fixed issue #24 by refactoring the AST.Node class - taken it out, and in the process fixed a lot of type annoyance by adding more generics. Also changed coding style from for/while/if/switch/catch/do ( expr ) {} to for (expr) {}, hence the changes _everywhere_. --- src/lombok/javac/JavacAnnotationHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lombok/javac/JavacAnnotationHandler.java') diff --git a/src/lombok/javac/JavacAnnotationHandler.java b/src/lombok/javac/JavacAnnotationHandler.java index fcd0cbba..84302a74 100644 --- a/src/lombok/javac/JavacAnnotationHandler.java +++ b/src/lombok/javac/JavacAnnotationHandler.java @@ -54,5 +54,5 @@ public interface JavacAnnotationHandler { * @return true if you don't want to be called again about this annotation during this * compile session (you've handled it), or false to indicate you aren't done yet. */ - boolean handle(AnnotationValues annotation, JCAnnotation ast, JavacAST.Node annotationNode); + boolean handle(AnnotationValues annotation, JCAnnotation ast, JavacNode annotationNode); } -- cgit