From 6c6f4c4642ee2fc9c92e8990d876a96e1cf51840 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 11 Nov 2010 16:18:18 +0100 Subject: Mostly fruitless work on making delegate work in eclipse. --- src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/lombok/eclipse/handlers') diff --git a/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java b/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java index f252793d..921d955e 100644 --- a/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java +++ b/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java @@ -506,7 +506,7 @@ public class EclipseHandlerUtil { private static final char[] ALL = "all".toCharArray(); - private static Annotation[] createSuppressWarningsAll(ASTNode source, Annotation[] originalAnnotationArray) { + public static Annotation[] createSuppressWarningsAll(ASTNode source, Annotation[] originalAnnotationArray) { int pS = source.sourceStart, pE = source.sourceEnd; long p = (long)pS << 32 | pE; long[] poss = new long[3]; -- cgit