]> source.dussan.org Git - aspectj.git/commitdiff
148190#32
authoraclement <aclement>
Mon, 15 Jan 2007 08:46:22 +0000 (08:46 +0000)
committeraclement <aclement>
Mon, 15 Jan 2007 08:46:22 +0000 (08:46 +0000)
ajde/testdata/bug-36071a/.cvsignore [deleted file]
ajde/testdata/bug-36071a/config1.lst [deleted file]
ajde/testdata/bug-36071a/config2.lst [deleted file]
ajde/testdata/bug-36071a/src/Main.java [deleted file]
ajde/testdata/bug-36071a/src/aspects/Logging.java [deleted file]
ajde/testdata/bug-36071a/src/testsrc/TestProperties.java [deleted file]
ajde/testdata/bug-36071a/src/testsrc/test.props [deleted file]

diff --git a/ajde/testdata/bug-36071a/.cvsignore b/ajde/testdata/bug-36071a/.cvsignore
deleted file mode 100644 (file)
index 4a9c325..0000000
+++ /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 (file)
index 6ba2da5..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-src/Main.java\r
-src/testsrc/TestProperties.java\r
diff --git a/ajde/testdata/bug-36071a/config2.lst b/ajde/testdata/bug-36071a/config2.lst
deleted file mode 100644 (file)
index c1fd90b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-src/aspects/Logging.java\r
diff --git a/ajde/testdata/bug-36071a/src/Main.java b/ajde/testdata/bug-36071a/src/Main.java
deleted file mode 100644 (file)
index 417fc68..0000000
+++ /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 (file)
index 2e8ba48..0000000
+++ /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 (file)
index 18139e0..0000000
+++ /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 (file)
index 51e670a..0000000
+++ /dev/null
@@ -1 +0,0 @@
-test=test
\ No newline at end of file