diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-20 21:03:13 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-20 21:05:06 +0200 |
commit | 0fb0c59d5aa9f18c34eac36e65dcf3c2fdf6808c (patch) | |
tree | 4c4ba80d0652b99345c88b2a6f2fecca653f9dc1 /src/core/lombok/eclipse/handlers/HandleData.java | |
parent | bdcbd1bac40ddbfeda22a99285976e2a92fd59df (diff) | |
download | lombok-0fb0c59d5aa9f18c34eac36e65dcf3c2fdf6808c.tar.gz lombok-0fb0c59d5aa9f18c34eac36e65dcf3c2fdf6808c.tar.bz2 lombok-0fb0c59d5aa9f18c34eac36e65dcf3c2fdf6808c.zip |
Javac/EclipseAnnotationHandler are now abstract classes instead of interfaces; there were too many 'option' methods (methods where you return either true or false), so we really needed the ability to pick a default.
Diffstat (limited to 'src/core/lombok/eclipse/handlers/HandleData.java')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleData.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleData.java b/src/core/lombok/eclipse/handlers/HandleData.java index 5d05af6b..71027c07 100644 --- a/src/core/lombok/eclipse/handlers/HandleData.java +++ b/src/core/lombok/eclipse/handlers/HandleData.java @@ -36,11 +36,7 @@ import org.mangosdk.spi.ProviderFor; * Handles the {@code lombok.Data} annotation for eclipse. */ @ProviderFor(EclipseAnnotationHandler.class) -public class HandleData implements EclipseAnnotationHandler<Data> { - @Override public boolean deferUntilPostDiet() { - return false; - } - +public class HandleData extends EclipseAnnotationHandler<Data> { public void handle(AnnotationValues<Data> annotation, Annotation ast, EclipseNode annotationNode) { Data ann = annotation.getInstance(); EclipseNode typeNode = annotationNode.up(); |