YumCore/src/main/java/pw/yumc/YumCore/annotation/NotProguard.java

13 lines
312 B
Java

package pw.yumc.YumCore.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
/**
* 防混淆注解
* Created by 蒋天蓓 on 2017/2/4 0004.
*/
@Target({ ElementType.METHOD, ElementType.FIELD, ElementType.TYPE, ElementType.CONSTRUCTOR })
public @interface NotProguard {
}