in src/main/java/org/apache/sling/fsprovider/internal/mapper/jcr/FsValue.java [121:131]
public boolean getBoolean() throws ValueFormatException, RepositoryException {
if (arrayIndex >= 0) {
Boolean[] array = props.get(propertyName, Boolean[].class);
if (array == null) {
return false;
}
return array[arrayIndex];
} else {
return props.get(propertyName, false);
}
}