summaryrefslogtreecommitdiff
path: root/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java
diff options
context:
space:
mode:
Diffstat (limited to 'examples/annotations/src/proguard/annotation/KeepPublicImplementations.java')
-rw-r--r--examples/annotations/src/proguard/annotation/KeepPublicImplementations.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java b/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java
deleted file mode 100644
index 52ee5b9..0000000
--- a/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * ProGuard -- shrinking, optimization, obfuscation, and preverification
- * of Java bytecode.
- *
- * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
- */
-package proguard.annotation;
-
-import java.lang.annotation.*;
-
-/**
- * This annotation specifies to keep all public implementations or extensions
- * of the annotated class as entry points.
- */
-@Target({ ElementType.TYPE })
-@Retention(RetentionPolicy.CLASS)
-@Documented
-public @interface KeepPublicImplementations {}