forked from plusone/plusone-commons
添加 UnsupportedOperation 注解。
parent
c216c00d98
commit
98bfdfc6aa
|
@ -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 {
|
||||||
|
}
|
Loading…
Reference in New Issue