1
0
mirror of https://e.coding.net/circlecloud/YumCore.git synced 2024-11-09 23:48:55 +00:00

feat: 添加防混淆注解

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
502647092 2017-02-04 20:38:38 +08:00
parent 12fc65c389
commit 52fa5f0f48

View File

@ -0,0 +1,12 @@
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 })
public @interface NotProguard {
}