summaryrefslogtreecommitdiffstats
path: root/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2010-02-19 22:18:25 -0800
committerElliott Hughes <enh@google.com>2010-02-19 22:18:25 -0800
commitd1227f5655860b3db3dda37351ca8b44a835ebe4 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java
parent66e84b9ff30de7c75b510cb9117205368cf5bd25 (diff)
downloadplatform_external_jsr305-d1227f5655860b3db3dda37351ca8b44a835ebe4.tar.gz
platform_external_jsr305-d1227f5655860b3db3dda37351ca8b44a835ebe4.tar.bz2
platform_external_jsr305-d1227f5655860b3db3dda37351ca8b44a835ebe4.zip
Remove external/jsr305.
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 {
-
-}