From bc8d7d131ea0680c2d2e844b2150d4a44062cf4b Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 16 Jul 2010 02:20:17 +0200 Subject: Updated to helios. A few new warnings popped up; handled those. --- src/core/lombok/eclipse/HandlerLibrary.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/core/lombok/eclipse') diff --git a/src/core/lombok/eclipse/HandlerLibrary.java b/src/core/lombok/eclipse/HandlerLibrary.java index 1be01459..df4681f0 100644 --- a/src/core/lombok/eclipse/HandlerLibrary.java +++ b/src/core/lombok/eclipse/HandlerLibrary.java @@ -94,7 +94,8 @@ public class HandlerLibrary { } /** Uses SPI Discovery to find implementations of {@link EclipseAnnotationHandler}. */ - @SuppressWarnings("unchecked") private static void loadAnnotationHandlers(HandlerLibrary lib) { + @SuppressWarnings({"rawtypes", "unchecked"}) + private static void loadAnnotationHandlers(HandlerLibrary lib) { try { for (EclipseAnnotationHandler handler : SpiLoadUtil.findServices(EclipseAnnotationHandler.class, EclipseAnnotationHandler.class.getClassLoader())) { try { -- cgit