in src/main/java/org/apache/sling/api/resource/ResourceMetadata.java [416:426]
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());
}
}
}
}