aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-08-07 10:52:32 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-08-07 10:52:32 -0700
commit8a8f33928f906208e9d3ed128e367aa6481b8507 (patch)
tree2478f353aca33981a11b7f3cc324f68a6a5125ec /src
parent4e294d2aa389f1936b919c0249001f421e49e605 (diff)
clang-format
Diffstat (limited to 'src')
-rw-r--r--src/objective-c/GRPCClient/GRPCCall.m12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCall.m b/src/objective-c/GRPCClient/GRPCCall.m
index 3c4e87cf5a..8ce88c7db2 100644
--- a/src/objective-c/GRPCClient/GRPCCall.m
+++ b/src/objective-c/GRPCClient/GRPCCall.m
@@ -230,7 +230,6 @@ static NSString *const kBearerPrefix = @"Bearer ";
errorWithDomain:kGRPCErrorDomain
code:GRPCErrorCodeCancelled
userInfo:@{NSLocalizedDescriptionKey : @"Canceled by app"}]];
-
}
- (void)maybeFinishWithError:(NSError *)errorOrNil {
@@ -534,11 +533,12 @@ static NSString *const kBearerPrefix = @"Bearer ";
__strong GRPCCall *strongSelf = self;
if (strongSelf) {
[self cancelCall];
- [self maybeFinishWithError:[NSError errorWithDomain:kGRPCErrorDomain
- code:GRPCErrorCodeUnavailable
- userInfo:@{
- NSLocalizedDescriptionKey : @"Connectivity lost."
- }]];
+ [self
+ maybeFinishWithError:[NSError errorWithDomain:kGRPCErrorDomain
+ code:GRPCErrorCodeUnavailable
+ userInfo:@{
+ NSLocalizedDescriptionKey : @"Connectivity lost."
+ }]];
}
}