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

Method getResourceAsStream

classpath/java/lang/Class.java:596–603  ·  view source on GitHub ↗
(String path)

Source from the content-addressed store, hash-verified

594 }
595
596 public InputStream getResourceAsStream(String path) {
597 URL url = getResource(path);
598 try {
599 return (url == null ? null : url.openStream());
600 } catch (IOException e) {
601 return null;
602 }
603 }
604
605 public boolean desiredAssertionStatus() {
606 return false;

Callers 2

findClassMethod · 0.45
findPropertiesMethod · 0.45

Calls 2

getResourceMethod · 0.95
openStreamMethod · 0.95

Tested by

no test coverage detected