MCPcopy Create free account
hub / github.com/ReadyTalk/avian / load

Method load

classpath/java/util/Properties.java:20–22  ·  view source on GitHub ↗
(InputStream in)

Source from the content-addressed store, hash-verified

18
19public 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);

Callers 1

Calls 1

parseMethod · 0.45

Tested by

no test coverage detected