Add performSynchronousFileAccessUsingBlock stub

This commit is contained in:
Ariel Abreu 2023-10-07 23:50:19 -04:00
parent 22e542f69d
commit 6f9958fd46
No known key found for this signature in database
GPG Key ID: 5B88AAAF4280706F

View File

@ -1492,4 +1492,9 @@ static int untitled_document_number = 0;
[self updateChangeCount: NSChangeDone];
}
- (void) performSynchronousFileAccessUsingBlock: (void (^)(void)) block {
// FIXME: this is just a stub for now that performs no synchronization
block();
}
@end