in src/main/java/org/apache/sling/fsprovider/internal/mapper/jcr/FsValue.java [82:92]
public double getDouble() throws ValueFormatException, RepositoryException {
if (arrayIndex >= 0) {
Double[] array = props.get(propertyName, Double[].class);
if (array == null) {
return 0;
}
return array[arrayIndex];
} else {
return props.get(propertyName, 0d);
}
}