diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-08-03 16:23:20 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-08-03 16:23:20 -0700 |
commit | 56c6574652ce261370582fec7decd4a8e6ce1cb3 (patch) | |
tree | cbd73a35fb485ff68cabb0233798662c480ef4ae /src/objective-c | |
parent | e21b467dc59b8d0ddc6f64bde65df07e121a0132 (diff) |
Fixup: GRPCChannel.unmanagedChannel back to readonly
Diffstat (limited to 'src/objective-c')
-rw-r--r-- | src/objective-c/GRPCClient/private/GRPCChannel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCChannel.h b/src/objective-c/GRPCClient/private/GRPCChannel.h index fa9f6f28d1..de0b58ffe4 100644 --- a/src/objective-c/GRPCClient/private/GRPCChannel.h +++ b/src/objective-c/GRPCClient/private/GRPCChannel.h @@ -38,7 +38,7 @@ // Each separate instance of this class represents at least one TCP connection to the provided host. // Create them using one of the subclasses |GRPCSecureChannel| and |GRPCUnsecuredChannel|. @interface GRPCChannel : NSObject -@property(nonatomic) grpc_channel *unmanagedChannel; +@property(nonatomic, readonly) grpc_channel *unmanagedChannel; - (instancetype)initWithChannel:(grpc_channel *)unmanagedChannel NS_DESIGNATED_INITIALIZER; @end |