summaryrefslogtreecommitdiff
path: root/examples/annotations/examples/Applet.java
diff options
context:
space:
mode:
Diffstat (limited to 'examples/annotations/examples/Applet.java')
-rw-r--r--examples/annotations/examples/Applet.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/annotations/examples/Applet.java b/examples/annotations/examples/Applet.java
deleted file mode 100644
index e5b7acc..0000000
--- a/examples/annotations/examples/Applet.java
+++ /dev/null
@@ -1,23 +0,0 @@
-import proguard.annotation.*;
-
-/**
- * This applet illustrates the use of annotations for configuring ProGuard.
- *
- * You can compile it with:
- * javac -classpath ../lib/annotations.jar Applet.java
- * You can then process it with:
- * java -jar ../../../lib/proguard.jar @ ../examples.pro
- *
- * The annotation will preserve the class and its essential methods,
- * as a result of the specifications in lib/annotations.pro.
- */
-@Keep
-public class Applet extends java.applet.Applet
-{
- // Implementations for Applet.
-
- public void init()
- {
- // ...
- }
-}