diff options
author | mkersten <mkersten> | 2003-09-26 05:56:32 +0000 |
---|---|---|
committer | mkersten <mkersten> | 2003-09-26 05:56:32 +0000 |
commit | e0c2b4345229e9f8ffe937ffd4dc21cf79b067d6 (patch) | |
tree | 1c878db0751df4644ffdfad5ca162e21e6aae926 /ajde/testdata/bug-36071a/src/testsrc | |
parent | 79c8ebbe4756a32b50741805d888e09a746c59da (diff) | |
download | aspectj-e0c2b4345229e9f8ffe937ffd4dc21cf79b067d6.tar.gz aspectj-e0c2b4345229e9f8ffe937ffd4dc21cf79b067d6.zip |
Cleaning up bad bug data.
Diffstat (limited to 'ajde/testdata/bug-36071a/src/testsrc')
-rw-r--r-- | ajde/testdata/bug-36071a/src/testsrc/TestProperties.java | 29 | ||||
-rw-r--r-- | ajde/testdata/bug-36071a/src/testsrc/test.props | 1 |
2 files changed, 30 insertions, 0 deletions
diff --git a/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java b/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java new file mode 100644 index 000000000..18139e035 --- /dev/null +++ b/ajde/testdata/bug-36071a/src/testsrc/TestProperties.java @@ -0,0 +1,29 @@ +/* + * 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 new file mode 100644 index 000000000..51e670ac7 --- /dev/null +++ b/ajde/testdata/bug-36071a/src/testsrc/test.props @@ -0,0 +1 @@ +test=test
\ No newline at end of file |