aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/RxLibrary/GRXConcurrentWriteable.m
diff options
context:
space:
mode:
Diffstat (limited to 'src/objective-c/RxLibrary/GRXConcurrentWriteable.m')
-rw-r--r--src/objective-c/RxLibrary/GRXConcurrentWriteable.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/objective-c/RxLibrary/GRXConcurrentWriteable.m b/src/objective-c/RxLibrary/GRXConcurrentWriteable.m
index d9d0e8c31e..e50cdf240d 100644
--- a/src/objective-c/RxLibrary/GRXConcurrentWriteable.m
+++ b/src/objective-c/RxLibrary/GRXConcurrentWriteable.m
@@ -63,7 +63,7 @@
- (void)enqueueSuccessfulCompletion {
dispatch_async(_writeableQueue, ^{
- @synchronized (self) {
+ @synchronized(self) {
if (self->_alreadyFinished) {
return;
}
@@ -76,7 +76,7 @@
- (void)cancelWithError:(NSError *)error {
NSAssert(error != nil, @"For a successful completion, use enqueueSuccessfulCompletion.");
- @synchronized (self) {
+ @synchronized(self) {
if (self->_alreadyFinished) {
return;
}
@@ -91,7 +91,7 @@
- (void)cancelSilently {
dispatch_async(_writeableQueue, ^{
- @synchronized (self) {
+ @synchronized(self) {
if (self->_alreadyFinished) {
return;
}