in src/main/java/org/apache/sling/commons/fsclassloader/impl/FSClassLoaderProvider.java [322:332]
public long getLastModified(final String name) {
logger.debug("Get last modified of {}", name);
final String path = cleanPath(name);
final File file = new File(path);
if (file.exists()) {
return file.lastModified();
}
// fallback to "non-existant" in case of problems
return -1;
}