Helps to have a retention policy
This commit is contained in:
parent
eeeaf140a7
commit
eae26b0562
1 changed files with 7 additions and 0 deletions
|
@ -14,10 +14,17 @@
|
|||
|
||||
package net.minecraft.server;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* @author cpw
|
||||
*
|
||||
*/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.FIELD)
|
||||
public @interface SidedProxy
|
||||
{
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue