Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin11/src/java/lang/Deprecated.java')
-rw-r--r--JCL/converterJclMin11/src/java/lang/Deprecated.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/JCL/converterJclMin11/src/java/lang/Deprecated.java b/JCL/converterJclMin11/src/java/lang/Deprecated.java
new file mode 100644
index 0000000000..5226e586c7
--- /dev/null
+++ b/JCL/converterJclMin11/src/java/lang/Deprecated.java
@@ -0,0 +1,6 @@
+package java.lang;
+import java.lang.annotation.*;
+@Documented
+@Retention(RetentionPolicy.RUNTIME)
+public @interface Deprecated {
+} \ No newline at end of file

Back to the top