Skip to content

Commit 1a18951

Browse files
committed
proxyHost and proxyPort properties should be read only
1 parent a26e2e1 commit 1a18951

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

KeenClient/KeenClient.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ typedef void (^AnalysisCompletionBlock)(NSData *responseData, NSURLResponse *res
120120
/**
121121
The current proxy configuration, if set. To set the configuration, use setProxy:port:.
122122
*/
123-
@property (nonatomic, getter=getProxyHost) NSString *proxyHost;
124-
@property (nonatomic, getter=getProxyPort) NSString *proxyPort;
123+
@property (nonatomic, readonly, getter=getProxyHost) NSString *proxyHost;
124+
@property (nonatomic, readonly, getter=getProxyPort) NSString *proxyPort;
125125

126126
/**
127127
Call this to retrieve the managed instance of KeenClient and set its project ID and Write/Read Keys

0 commit comments

Comments
 (0)