Merge pull request #254 from CaptainShadows/patch-1

@InstanceFactory was set to look for Fields instead of methods
This commit is contained in:
cpw 2013-07-09 07:19:24 -07:00
commit 11bf88fceb
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ public @interface Mod
* *
*/ */
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD) @Target(ElementType.METHOD)
public @interface InstanceFactory { public @interface InstanceFactory {
} }
} }