001    package cpw.mods.fml.common.asm;
002    
003    import java.lang.annotation.ElementType;
004    import java.lang.annotation.Retention;
005    import java.lang.annotation.RetentionPolicy;
006    import java.lang.annotation.Target;
007    
008    /**
009     * Used to force certain classes to reobfuscate
010     * @author cpw
011     *
012     */
013    @Retention(RetentionPolicy.RUNTIME)
014    @Target({ElementType.TYPE})
015    public @interface ReobfuscationMarker {
016    
017    }