Fix property accessor warning in RCTDevSettings::websocketExecutorName

Summary:
Motivation: Fixes Xcode warning `Ivar '_websocketExecutorName' which backs the property is not referenced in this property's accessor` which shows up because this property has no setter (and is never set anywhere).
Closes https://github.com/facebook/react-native/pull/12639

Differential Revision: D4745437

Pulled By: javache

fbshipit-source-id: 3ab4b0df62f90adc2b62d891197dc783e07da4e3
This commit is contained in:
Ben Roth 2017-03-21 04:03:00 -07:00 committed by Facebook Github Bot
parent a4300dab67
commit b3be5743e9
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@
* Alternate name for the websocket executor, if not the generic term "remote".
* TODO t16297016: this seems to be unused, remove?
*/
@property (nonatomic, copy) NSString *websocketExecutorName;
@property (nonatomic, readonly) NSString *websocketExecutorName;
/*
* Whether shaking will show RCTDevMenu. The menu is enabled by default if RCT_DEV=1, but