(InputStream in)
| 18 | |
| 19 | public class Properties extends Hashtable { |
| 20 | public void load(InputStream in) throws IOException { |
| 21 | new InputStreamParser(in).parse(this); |
| 22 | } |
| 23 | |
| 24 | public void load(Reader reader) throws IOException { |
| 25 | new ReaderParser(reader).parse(this); |
no test coverage detected