in src/main/java/org/apache/sling/fsprovider/internal/mapper/ContentFile.java [96:107]
public ContentElement getContent() {
if (!contentInitialized) {
ContentElement rootContent = contentFileCache.get(path, file, contentType);
if (subPath == null) {
content = rootContent;
} else if (rootContent != null) {
content = rootContent.getChild(subPath);
}
contentInitialized = true;
}
return content;
}