aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCChannelPool.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-16 18:28:16 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-16 18:28:16 -0700
commitad5485ae4ef4ec31cb6b3ed54876fd9868343388 (patch)
tree24487565740e640256ae3bc5a7a27208379140e4 /src/objective-c/GRPCClient/private/GRPCChannelPool.h
parentbc292b87c26ea8f6465443a152e86b3ed71e585b (diff)
Make channel args immutable
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCChannelPool.h')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCChannelPool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCChannelPool.h b/src/objective-c/GRPCClient/private/GRPCChannelPool.h
index 2a99089d2f..1984919fa7 100644
--- a/src/objective-c/GRPCClient/private/GRPCChannelPool.h
+++ b/src/objective-c/GRPCClient/private/GRPCChannelPool.h
@@ -35,7 +35,7 @@ NS_ASSUME_NONNULL_BEGIN
@property(strong, readonly) GRPCCallOptions *callOptions;
@property(readonly) id<GRPCChannelFactory> channelFactory;
-@property(readonly) NSMutableDictionary *channelArgs;
+@property(readonly) NSDictionary *channelArgs;
- (nullable instancetype)initWithHost:(NSString *)host callOptions:(GRPCCallOptions *)callOptions;