aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/ProtoRPC/ProtoRPC.m
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-23 13:14:24 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-23 13:14:24 -0700
commit26108e1106cffd1767f0b7fb6ff4b0672ed6a640 (patch)
treefe8ea617db8d5e258c84c58fdff9810c94487f33 /src/objective-c/ProtoRPC/ProtoRPC.m
parentcc58524994eddfbbc7cd800efe1462a7ec28d4f0 (diff)
clang-format
Diffstat (limited to 'src/objective-c/ProtoRPC/ProtoRPC.m')
-rw-r--r--src/objective-c/ProtoRPC/ProtoRPC.m26
1 files changed, 14 insertions, 12 deletions
diff --git a/src/objective-c/ProtoRPC/ProtoRPC.m b/src/objective-c/ProtoRPC/ProtoRPC.m
index 27070a891d..34891e8953 100644
--- a/src/objective-c/ProtoRPC/ProtoRPC.m
+++ b/src/objective-c/ProtoRPC/ProtoRPC.m
@@ -28,19 +28,19 @@
#import <RxLibrary/GRXWriter+Transformations.h>
/**
- * Generate an NSError object that represents a failure in parsing a proto class.
- */
+ * Generate an NSError object that represents a failure in parsing a proto class.
+ */
static NSError *ErrorForBadProto(id proto, Class expectedClass, NSError *parsingError) {
NSDictionary *info = @{
- NSLocalizedDescriptionKey : @"Unable to parse response from the server",
- NSLocalizedRecoverySuggestionErrorKey :
- @"If this RPC is idempotent, retry "
- @"with exponential backoff. Otherwise, query the server status before "
- @"retrying.",
- NSUnderlyingErrorKey : parsingError,
- @"Expected class" : expectedClass,
- @"Received value" : proto,
- };
+ NSLocalizedDescriptionKey : @"Unable to parse response from the server",
+ NSLocalizedRecoverySuggestionErrorKey :
+ @"If this RPC is idempotent, retry "
+ @"with exponential backoff. Otherwise, query the server status before "
+ @"retrying.",
+ NSUnderlyingErrorKey : parsingError,
+ @"Expected class" : expectedClass,
+ @"Received value" : proto,
+ };
// TODO(jcanizales): Use kGRPCErrorDomain and GRPCErrorCodeInternal when they're public.
return [NSError errorWithDomain:@"io.grpc" code:13 userInfo:info];
}
@@ -190,7 +190,9 @@ static NSError *ErrorForBadProto(id proto, Class expectedClass, NSError *parsing
}
} else {
if ([self->_handler respondsToSelector:@selector(closedWithTrailingMetadata:error:)]) {
- [self->_handler closedWithTrailingMetadata:nil error:ErrorForBadProto(message, _responseClass, error)];
+ [self->_handler
+ closedWithTrailingMetadata:nil
+ error:ErrorForBadProto(message, _responseClass, error)];
}
self->_handler = nil;
[self->_call cancel];