aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCInsecureChannelFactory.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-11-19 09:52:29 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-11-19 09:52:29 -0800
commit29e1591904539fcb6d92ba49e69ed27ee9d3349d (patch)
treeb13ee9babf1b89489fbe257ac426a165cf2badc8 /src/objective-c/GRPCClient/private/GRPCInsecureChannelFactory.h
parent00ff5805a3c00e9d29cb71dfd5365c36dd5bf96c (diff)
_Nullable -> nullable
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCInsecureChannelFactory.h')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCInsecureChannelFactory.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCInsecureChannelFactory.h b/src/objective-c/GRPCClient/private/GRPCInsecureChannelFactory.h
index 98a985fe84..2d471aebed 100644
--- a/src/objective-c/GRPCClient/private/GRPCInsecureChannelFactory.h
+++ b/src/objective-c/GRPCClient/private/GRPCInsecureChannelFactory.h
@@ -23,12 +23,12 @@ NS_ASSUME_NONNULL_BEGIN
@interface GRPCInsecureChannelFactory : NSObject<GRPCChannelFactory>
-+ (instancetype _Nullable)sharedInstance;
++ (nullable instancetype)sharedInstance;
-- (grpc_channel *_Nullable)createChannelWithHost:(NSString *)host
- channelArgs:(NSDictionary *_Nullable)args;
+- (nullable grpc_channel *)createChannelWithHost:(NSString *)host
+ channelArgs:(nullable NSDictionary *)args;
-- (instancetype _Nullable)init NS_UNAVAILABLE;
+- (nullable instancetype)init NS_UNAVAILABLE;
@end