[Infer] change atomic properties to nonatomic (#1932)

This commit is contained in:
Hannah Troisi
2016-07-16 10:46:55 -07:00
committed by appleguy
parent dda7accd8e
commit abf8d5b9aa
16 changed files with 90 additions and 90 deletions

View File

@@ -47,19 +47,19 @@ NS_ASSUME_NONNULL_BEGIN
/**
* The delegate, which must conform to the <ASNetworkImageNodeDelegate> protocol.
*/
@property (nullable, atomic, weak, readwrite) id<ASNetworkImageNodeDelegate> delegate;
@property (nullable, nonatomic, weak, readwrite) id<ASNetworkImageNodeDelegate> delegate;
/**
* A placeholder image to display while the URL is loading.
*/
@property (nullable, atomic, strong, readwrite) UIImage *defaultImage;
@property (nullable, nonatomic, strong, readwrite) UIImage *defaultImage;
/**
* The URL of a new image to download and display.
*
* @discussion Changing this property will reset the displayed image to a placeholder (<defaultImage>) while loading.
*/
@property (nullable, atomic, strong, readwrite) NSURL *URL;
@property (nullable, nonatomic, strong, readwrite) NSURL *URL;
/**
* Download and display a new image.