summaryrefslogtreecommitdiffstats
path: root/ajde
diff options
context:
space:
mode:
authoraclement <aclement>2007-01-15 08:46:22 +0000
committeraclement <aclement>2007-01-15 08:46:22 +0000
commit1e76ec3f7e15bb1c943a2baec3f6ade6c9a7745d (patch)
tree930b095d23a5b463b3f6b866cf68e6c2f5625f64 /ajde
parentc15e9cc0c51e1cc1357f4a526ea1218ad2eab441 (diff)
downloadaspectj-1e76ec3f7e15bb1c943a2baec3f6ade6c9a7745d.tar.gz
aspectj-1e76ec3f7e15bb1c943a2baec3f6ade6c9a7745d.zip
148190#32
Diffstat (limited to 'ajde')
-rw-r--r--ajde/testdata/bug-36071a/.cvsignore3
-rw-r--r--ajde/testdata/bug-36071a/config1.lst2
-rw-r--r--ajde/testdata/bug-36071a/config2.lst1
-rw-r--r--ajde/testdata/bug-36071a/src/Main.java22
-rw-r--r--ajde/testdata/bug-36071a/src/aspects/Logging.java27
-rw-r--r--ajde/testdata/bug-36071a/src/testsrc/TestProperties.java29
-rw-r--r--ajde/testdata/bug-36071a/src/testsrc/test.props1
7 files changed, 0 insertions, 85 deletions
diff --git a/ajde/testdata/bug-36071a/.cvsignore b/ajde/testdata/bug-36071a/.cvsignore
deleted file mode 100644
index 4a9c32528..000000000
--- a/ajde/testdata/bug-36071a/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-bin
-
-*.ajsym
diff --git a/ajde/testdata/bug-36071a/config1.lst b/ajde/testdata/bug-36071a/config1.lst
deleted file mode 100644
index 6ba2da52a..000000000
--- a/ajde/testdata/bug-36071a/config1.lst
+++ /dev/null
@@ -1,2 +0,0 @@
-src/Main.java
-src/testsrc/TestProperties.java
diff --git a/ajde/testdata/bug-36071a/config2.lst b/ajde/testdata/bug-36071a/config2.lst
deleted file mode 100644
index c1fd90b45..000000000
--- a/ajde/testdata/bug-36071a/config2.lst
+++ /dev/null
@@ -1 +0,0 @@
-src/aspects/Logging.java
diff --git a/ajde/testdata/bug-36071a/src/Main.java b/ajde/testdata/bug-36071a/src/Main.java
deleted file mode 100644
index 417fc6809..000000000
--- a/ajde/testdata/bug-36071a/src/Main.java
+++ /dev/null
@@ -1,22 +0,0 @@
-import java.io.IOException;
-
-/*
- * Created on 30-Jul-03
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-
-/**
- * @author websterm
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public class Main {
-
- public static void main(String[] args) throws IOException {
- String propsName = (args.length > 0)? args[0] : "test.props";
- new test.TestProperties().load(propsName);
- }
-}
diff --git a/ajde/testdata/bug-36071a/src/aspects/Logging.java b/ajde/testdata/bug-36071a/src/aspects/Logging.java
deleted file mode 100644
index 2e8ba485a..000000000
--- a/ajde/testdata/bug-36071a/src/aspects/Logging.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Created on 30-Jul-03
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-package aspects;
-
-/**
- * @author websterm
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public aspect Logging {
-
- pointcut methods () :
- execution(* *..*(..)) && !within(Logging);
-
- before () : methods () {
- System.err.println("> " + thisJoinPoint.getSignature().toLongString());
- }
-
- after () : methods () {
- System.err.println("< " + thisJoinPoint.getSignature().toLongString());
- }
-}
diff --git a/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java b/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java
deleted file mode 100644
index 18139e035..000000000
--- a/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Created on 30-Jul-03
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-package test;
-
-import java.io.IOException;
-import java.io.InputStream;
-import java.util.Properties;
-
-/**
- * @author websterm
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public class TestProperties {
-
- public void load (String name) throws IOException {
- InputStream in = getClass().getResourceAsStream(name);
-// System.out.println("? load() in=" + in);
- Properties props = new Properties();
- props.load(in);
- in.close();
- props.list(System.out);
- }
-}
diff --git a/ajde/testdata/bug-36071a/src/testsrc/test.props b/ajde/testdata/bug-36071a/src/testsrc/test.props
deleted file mode 100644
index 51e670ac7..000000000
--- a/ajde/testdata/bug-36071a/src/testsrc/test.props
+++ /dev/null
@@ -1 +0,0 @@
-test=test \ No newline at end of file