Add missing annotation.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 9 Jun 2011 08:40:24 +0000 (10:40 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 9 Jun 2011 08:40:24 +0000 (10:40 +0200)
src/main/java/net/pterodactylus/sone/core/Options.java

index 7392da2..1bdf21f 100644 (file)
@@ -193,6 +193,7 @@ public class Options {
                /**
                 * {@inheritDoc}
                 */
+               @Override
                public boolean validate(T value) {
                        return (validator == null) || (value == null) || validator.validate(value);
                }