Make sure all properties are nonatomic

This commit is contained in:
Jonathan Schleifer 2017-07-23 14:07:40 +02:00
parent 8c991b50d2
commit e0ff07860a
No known key found for this signature in database
GPG key ID: 28D65178B37F33E3
6 changed files with 19 additions and 15 deletions

View file

@ -48,12 +48,12 @@ OF_ASSUME_NONNULL_BEGIN
* This usually contains at least all immediate child nodes, but may contain
* any number of nodes nested more deeply.
*/
@property (readonly) OFDictionary *discoNodes;
@property (readonly, nonatomic) OFDictionary *discoNodes;
/*!
* The node advertised for the entity's capabilites.
*/
@property (readonly) OFString *capsNode;
@property (readonly, nonatomic) OFString *capsNode;
+ (instancetype)discoNodeWithJID: (XMPPJID *)JID
node: (nullable OFString *)node OF_UNAVAILABLE;