aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/GRPCCall.m
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-11-06 17:46:22 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-11-06 17:46:22 -0800
commitab9510560781dd2f27608e694518f67b7d425d9a (patch)
tree232cd3ab9feff809988d548c9de79980bd1d0c79 /src/objective-c/GRPCClient/GRPCCall.m
parenta0f5db15815d3ec5b2ad3b781cca5e2eb6468824 (diff)
clang-format
Diffstat (limited to 'src/objective-c/GRPCClient/GRPCCall.m')
-rw-r--r--src/objective-c/GRPCClient/GRPCCall.m13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCall.m b/src/objective-c/GRPCClient/GRPCCall.m
index b3bddf08a0..321a0bd1bd 100644
--- a/src/objective-c/GRPCClient/GRPCCall.m
+++ b/src/objective-c/GRPCClient/GRPCCall.m
@@ -468,7 +468,7 @@ const char *kCFStreamVarName = "grpc_cfstream";
- (void)cancelCall {
// Can be called from any thread, any number of times.
- @synchronized (self) {
+ @synchronized(self) {
[_wrappedCall cancel];
}
}
@@ -732,18 +732,19 @@ const char *kCFStreamVarName = "grpc_cfstream";
_responseWriteable =
[[GRXConcurrentWriteable alloc] initWithWriteable:writeable dispatchQueue:_responseQueue];
- GRPCWrappedCall *wrappedCall = [[GRPCWrappedCall alloc] initWithHost:_host path:_path callOptions:_callOptions];
+ GRPCWrappedCall *wrappedCall =
+ [[GRPCWrappedCall alloc] initWithHost:_host path:_path callOptions:_callOptions];
if (wrappedCall == nil) {
[self maybeFinishWithError:[NSError errorWithDomain:kGRPCErrorDomain
code:GRPCErrorCodeUnavailable
userInfo:@{
- NSLocalizedDescriptionKey :
- @"Failed to create call or channel."
- }]];
+ NSLocalizedDescriptionKey :
+ @"Failed to create call or channel."
+ }]];
return;
}
- @synchronized (self) {
+ @synchronized(self) {
_wrappedCall = wrappedCall;
}