aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/ProtoRPC/ProtoRPC.m
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-20 13:00:38 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-20 13:00:38 -0700
commit9a15b6a5cfa81ab31afb4945cc1ccd8fe5be5665 (patch)
treee5078b70fa37da690cfa062f56e829aa4c75bc2f /src/objective-c/ProtoRPC/ProtoRPC.m
parentae99d3a5ed45e135f8b9bd9235b252fed56aa417 (diff)
clang-format
Diffstat (limited to 'src/objective-c/ProtoRPC/ProtoRPC.m')
-rw-r--r--src/objective-c/ProtoRPC/ProtoRPC.m11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/objective-c/ProtoRPC/ProtoRPC.m b/src/objective-c/ProtoRPC/ProtoRPC.m
index f6e3298f62..28c037e609 100644
--- a/src/objective-c/ProtoRPC/ProtoRPC.m
+++ b/src/objective-c/ProtoRPC/ProtoRPC.m
@@ -34,7 +34,7 @@
- (instancetype)initWithRequestOptions:(GRPCRequestOptions *)requestOptions
message:(GPBMessage *)message
responseHandler:(id<GRPCProtoResponseHandler>)handler
- callOptions:(GRPCCallOptions * _Nullable)callOptions
+ callOptions:(GRPCCallOptions *_Nullable)callOptions
responseClass:(Class)responseClass {
if ((self = [super init])) {
_call = [[GRPCStreamingProtoCall alloc] initWithRequestOptions:requestOptions
@@ -70,7 +70,7 @@
- (instancetype)initWithRequestOptions:(GRPCRequestOptions *)requestOptions
responseHandler:(id<GRPCProtoResponseHandler>)handler
- callOptions:(GRPCCallOptions * _Nullable)callOptions
+ callOptions:(GRPCCallOptions *_Nullable)callOptions
responseClass:(Class)responseClass {
if (requestOptions.host.length == 0 || requestOptions.path.length == 0) {
[NSException raise:NSInvalidArgumentException format:@"Neither host nor path can be nil."];
@@ -153,7 +153,7 @@
});
}
-- (void)receivedInitialMetadata:(NSDictionary * _Nullable)initialMetadata {
+- (void)receivedInitialMetadata:(NSDictionary *_Nullable)initialMetadata {
if (_handler && initialMetadata != nil) {
id<GRPCProtoResponseHandler> handler = _handler;
if ([handler respondsToSelector:@selector(initialMetadata:)]) {
@@ -164,7 +164,7 @@
}
}
-- (void)receivedRawMessage:(NSData * _Nullable)message {
+- (void)receivedRawMessage:(NSData *_Nullable)message {
if (_handler && message != nil) {
id<GRPCProtoResponseHandler> handler = _handler;
NSError *error = nil;
@@ -188,7 +188,8 @@
}
}
-- (void)closedWithTrailingMetadata:(NSDictionary * _Nullable)trailingMetadata error:(NSError * _Nullable)error {
+- (void)closedWithTrailingMetadata:(NSDictionary *_Nullable)trailingMetadata
+ error:(NSError *_Nullable)error {
if (_handler) {
id<GRPCProtoResponseHandler> handler = _handler;
if ([handler respondsToSelector:@selector(closedWithTrailingMetadata:error:)]) {