aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/ProtoRPC/ProtoRPC.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-11-19 09:43:24 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-11-19 09:43:24 -0800
commit00ff5805a3c00e9d29cb71dfd5365c36dd5bf96c (patch)
tree2b9f1223dbbc602d54bdc57a844f512e2a89ba14 /src/objective-c/ProtoRPC/ProtoRPC.h
parent680b53f7ad7c93947003dcf8d377f2b33c7623e9 (diff)
null_unspecified -> nullable
Diffstat (limited to 'src/objective-c/ProtoRPC/ProtoRPC.h')
-rw-r--r--src/objective-c/ProtoRPC/ProtoRPC.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/objective-c/ProtoRPC/ProtoRPC.h b/src/objective-c/ProtoRPC/ProtoRPC.h
index 98b60c3f72..2623aecb82 100644
--- a/src/objective-c/ProtoRPC/ProtoRPC.h
+++ b/src/objective-c/ProtoRPC/ProtoRPC.h
@@ -132,11 +132,11 @@ __attribute__((deprecated("Please use GRPCProtoCall."))) @interface ProtoRPC
* addr and the port number, for example @"localhost:5050".
*/
-
- (instancetype _Null_unspecified)initWithHost : (NSString *_Null_unspecified)host method
- : (GRPCProtoMethod *_Null_unspecified)method requestsWriter
- : (GRXWriter *_Null_unspecified)requestsWriter responseClass
- : (Class _Null_unspecified)responseClass responsesWriteable
- : (id<GRXWriteable> _Null_unspecified)responsesWriteable NS_DESIGNATED_INITIALIZER;
+ (nullable instancetype)initWithHost : (nullable NSString *)host method
+ : (nullable GRPCProtoMethod *)method requestsWriter
+ : (nullable GRXWriter *)requestsWriter responseClass
+ : (nullable Class)responseClass responsesWriteable
+ : (nullable id<GRXWriteable>)responsesWriteable NS_DESIGNATED_INITIALIZER;
- (void)start;
@end