diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-16 02:20:17 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-16 02:20:17 +0200 |
commit | bc8d7d131ea0680c2d2e844b2150d4a44062cf4b (patch) | |
tree | 7e0a1fa94c8cfc8071b40223c277cdc2ba6b8b88 /src/core/lombok/eclipse | |
parent | d5ba04ca59f9e36ff1606d3520f6b90834da3cc9 (diff) | |
download | lombok-bc8d7d131ea0680c2d2e844b2150d4a44062cf4b.tar.gz lombok-bc8d7d131ea0680c2d2e844b2150d4a44062cf4b.tar.bz2 lombok-bc8d7d131ea0680c2d2e844b2150d4a44062cf4b.zip |
Updated to helios. A few new warnings popped up; handled those.
Diffstat (limited to 'src/core/lombok/eclipse')
-rw-r--r-- | src/core/lombok/eclipse/HandlerLibrary.java | 3 |
1 files changed, 2 insertions, 1 deletions
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 { |