From c884c3819b687f36804abd0610f1ad724f49011f Mon Sep 17 00:00:00 2001 From: Nicholas Ignoffo Date: Wed, 1 Jun 2016 16:01:36 -0700 Subject: [PATCH] Fix retention for @Handler --- src/main/java/WayofTime/bloodmagic/annot/Handler.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/WayofTime/bloodmagic/annot/Handler.java b/src/main/java/WayofTime/bloodmagic/annot/Handler.java index cb7ccb18..0e972824 100644 --- a/src/main/java/WayofTime/bloodmagic/annot/Handler.java +++ b/src/main/java/WayofTime/bloodmagic/annot/Handler.java @@ -1,8 +1,15 @@ package WayofTime.bloodmagic.annot; +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + /** * Classes annotated with this will automatically be registered to the * {@link net.minecraftforge.common.MinecraftForge#EVENT_BUS}. */ +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.TYPE) public @interface Handler { }