aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/eclipse/EclipseAnnotationHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lombok/eclipse/EclipseAnnotationHandler.java')
-rw-r--r--src/core/lombok/eclipse/EclipseAnnotationHandler.java11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/core/lombok/eclipse/EclipseAnnotationHandler.java b/src/core/lombok/eclipse/EclipseAnnotationHandler.java
index 55175cef..ca9cac83 100644
--- a/src/core/lombok/eclipse/EclipseAnnotationHandler.java
+++ b/src/core/lombok/eclipse/EclipseAnnotationHandler.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2009-2011 The Project Lombok Authors.
+ * Copyright (C) 2009-2012 The Project Lombok Authors.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -59,13 +59,4 @@ public abstract class EclipseAnnotationHandler<T extends java.lang.annotation.An
*/
public void preHandle(AnnotationValues<T> annotation, org.eclipse.jdt.internal.compiler.ast.Annotation ast, EclipseNode annotationNode) {
}
-
- /**
- * Return true if this handler should not be run in the diet parse phase.
- * 'diet parse' is where method bodies aren't filled in yet. If you have a method-level annotation that modifies the contents of that method,
- * return {@code true} here. Otherwise, return {@code false} here.
- */
- public boolean deferUntilPostDiet() {
- return false;
- }
}