Suppress a warning.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 2 Mar 2012 09:23:08 +0000 (10:23 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 2 Mar 2012 09:23:08 +0000 (10:23 +0100)
src/main/java/net/pterodactylus/sone/core/Options.java

index 513138b..bf51e02 100644 (file)
@@ -355,6 +355,7 @@ public class Options {
         * @return The enum option, or {@code null} if there is no enum option with
         *         the given name
         */
+       @SuppressWarnings("unchecked")
        public <T extends Enum<T>> Option<T> getEnumOption(String name) {
                return (Option<T>) enumOptions.get(name);
        }