in src/main/java/org/apache/sling/commons/fsclassloader/impl/FSClassLoaderProvider.java [311:316]
public InputStream getInputStream(final String name) throws IOException {
logger.debug("Get input stream of {}", name);
final String path = cleanPath(name);
final File file = new File(path);
return new FileInputStream(file);
}