summaryrefslogtreecommitdiffstats
path: root/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java
diff options
context:
space:
mode:
Diffstat (limited to 'ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java')
-rw-r--r--ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java b/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java
deleted file mode 100644
index 4e3344e..0000000
--- a/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package javax.annotation;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * When this annotation is applied to a method, it indicates that if this method
- * is overridden in a subclass, the overriding method should invoke this method
- * (through method invocation on super).
- *
- */
-@Documented
-@Target( { ElementType.METHOD })
-@Retention(RetentionPolicy.RUNTIME)
-public @interface OverridingMethodsMustInvokeSuper {
-
-}