diff options
Diffstat (limited to 'ajde/testdata/bug-36071/src/test/TestProperties.java')
-rw-r--r-- | ajde/testdata/bug-36071/src/test/TestProperties.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/ajde/testdata/bug-36071/src/test/TestProperties.java b/ajde/testdata/bug-36071/src/test/TestProperties.java deleted file mode 100644 index 18139e035..000000000 --- a/ajde/testdata/bug-36071/src/test/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); - } -} |