aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/filters/input/stripjavacomments.test
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/ant/apache-ant-1.9.6/src/etc/testcases/filters/input/stripjavacomments.test')
-rw-r--r--framework/src/ant/apache-ant-1.9.6/src/etc/testcases/filters/input/stripjavacomments.test30
1 files changed, 0 insertions, 30 deletions
diff --git a/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/filters/input/stripjavacomments.test b/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/filters/input/stripjavacomments.test
deleted file mode 100644
index 37535bcc..00000000
--- a/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/filters/input/stripjavacomments.test
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright text
- * has to be removed
- */
-
-/**
- * JavaDoc text about the class.
- * has to be removed
- */
-public class NormalLine {
-
- private String withComment; // this comment should be removed
-
- /* this comment
- * should be
- * removed
- */
- public void doNothing() {
- // this comment should be removed
- int i;
- /* this comment
- should be removed
- */
- int j;
- }
-
- private String url = "http://ant.apache.org/"; // very difficult!
- private String url2 = "\"http://ant.apache.org/\""; // even worse
-
-}