in src/main/java/org/apache/sling/api/resource/ResourceMetadata.java [415:425]
private void getLockedData() {
if (isReadOnly && lockedEntrySet == null) {
synchronized (this) {
if (isReadOnly && lockedEntrySet == null) {
lockedEntrySet = Collections.unmodifiableSet(super.entrySet());
lockedKeySet = Collections.unmodifiableSet(super.keySet());
lockedValues = Collections.unmodifiableCollection(super.values());
}
}
}
}