summaryrefslogtreecommitdiff
path: root/examples/annotations/examples/Application.java
diff options
context:
space:
mode:
Diffstat (limited to 'examples/annotations/examples/Application.java')
-rw-r--r--examples/annotations/examples/Application.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/annotations/examples/Application.java b/examples/annotations/examples/Application.java
deleted file mode 100644
index 777d286..0000000
--- a/examples/annotations/examples/Application.java
+++ /dev/null
@@ -1,21 +0,0 @@
-import proguard.annotation.KeepApplication;
-
-/**
- * This application illustrates the use of annotations for configuring ProGuard.
- *
- * You can compile it with:
- * javac -classpath ../lib/annotations.jar Application.java
- * You can then process it with:
- * java -jar ../../../lib/proguard.jar @ ../examples.pro
- *
- * The annotation will preserve the class and its main method,
- * as a result of the specifications in lib/annotations.pro.
- */
-@KeepApplication
-public class Application
-{
- public static void main(String[] args)
- {
- System.out.println("The answer is 42");
- }
-}