Skip to content

Commit

Permalink
F53OSCClient: fix declaration for properties with manually-defined ge…
Browse files Browse the repository at this point in the history
…tters

- the implementation of the getters do not lock or synchronize, so these properties should be `nonatomic`
  • Loading branch information
balord committed Aug 15, 2018
1 parent 9259dea commit 29e2e92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions F53OSCClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, assign) BOOL useTcp;
@property (nonatomic, strong, nullable) id userData;
@property (nonatomic, copy) NSDictionary *state;
@property (atomic, readonly) NSString *title;
@property (atomic, readonly) BOOL isValid;
@property (atomic, readonly) BOOL isConnected;
@property (nonatomic, readonly) NSString *title;
@property (nonatomic, readonly) BOOL isValid;
@property (nonatomic, readonly) BOOL isConnected;

- (BOOL) connect; // NOTE: returns NO if internal F53OSCSocket uses TCP and is already connected
- (void) disconnect;
Expand Down

0 comments on commit 29e2e92

Please sign in to comment.