Change all copyright headers to include 2012.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Options.java
index 513138b..af81d0f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - Options.java - Copyright © 2010 David Roden
+ * Sone - Options.java - Copyright © 2010–2012 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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);
        }