in src/main/java/org/apache/sling/launchpad/startupmanager/LaunchpadContentProviderImpl.java [98:110]
public InputStream getResourceAsStream(String path) {
URL res = this.getResource(path);
if (res != null) {
try {
return res.openStream();
} catch (IOException ioe) {
// ignore this one
}
}
// no resource
return null;
}