From 98bfdfc6aad163f93569131102277cbefca0bb93 Mon Sep 17 00:00:00 2001 From: ZhouXY108 Date: Thu, 6 Jul 2023 10:05:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20UnsupportedOperation=20?= =?UTF-8?q?=E6=B3=A8=E8=A7=A3=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../commons/annotation/UnsupportedOperation.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/xyz/zhouxy/plusone/commons/annotation/UnsupportedOperation.java diff --git a/src/main/java/xyz/zhouxy/plusone/commons/annotation/UnsupportedOperation.java b/src/main/java/xyz/zhouxy/plusone/commons/annotation/UnsupportedOperation.java new file mode 100644 index 0000000..9f63ce9 --- /dev/null +++ b/src/main/java/xyz/zhouxy/plusone/commons/annotation/UnsupportedOperation.java @@ -0,0 +1,11 @@ +package xyz.zhouxy.plusone.commons.annotation; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target(ElementType.METHOD) +@Retention(RetentionPolicy.SOURCE) +public @interface UnsupportedOperation { +}