source: release-kits/lirk3/resources/gs3-release-maker/apache-ant-1.6.5/src/etc/testcases/filters/input/stripjavacomments.test@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 580 bytes
Line 
1/*
2 * Copyright text
3 * has to be removed
4 */
5
6/**
7 * JavaDoc text about the class.
8 * has to be removed
9 */
10public class NormalLine {
11
12 private String withComment; // this comment should be removed
13
14 /* this comment
15 * should be
16 * removed
17 */
18 public void doNothing() {
19 // this comment should be removed
20 int i;
21 /* this comment
22 should be removed
23 */
24 int j;
25 }
26
27 private String url = "http://ant.apache.org/"; // very difficult!
28 private String url2 = "\"http://ant.apache.org/\""; // even worse
29
30}
Note: See TracBrowser for help on using the repository browser.