001package cpw.mods.fml.common.asm;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import 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})
015public @interface ReobfuscationMarker {
016
017}