From 52fa5f0f4875c5475c50e71772dde41855cd6d12 Mon Sep 17 00:00:00 2001 From: 502647092 Date: Sat, 4 Feb 2017 20:38:38 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E9=98=B2=E6=B7=B7?= =?UTF-8?q?=E6=B7=86=E6=B3=A8=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 502647092 --- .../java/pw/yumc/YumCore/annotation/NotProguard.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/main/java/pw/yumc/YumCore/annotation/NotProguard.java diff --git a/src/main/java/pw/yumc/YumCore/annotation/NotProguard.java b/src/main/java/pw/yumc/YumCore/annotation/NotProguard.java new file mode 100644 index 0000000..453e4c7 --- /dev/null +++ b/src/main/java/pw/yumc/YumCore/annotation/NotProguard.java @@ -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 { +}