summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTimer.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
commit55850b04dca4b6d11e3a7fcac42d1e1708a36bdf (patch)
treed9f444d1fc9ddd1faf28647ff171202f86df1a32 /SmartDeviceLink/SDLTimer.h
parentf44eba087b5f26897a6d126eedc691299f369782 (diff)
downloadsdl_ios-55850b04dca4b6d11e3a7fcac42d1e1708a36bdf.tar.gz
Make properties nonatomic
Diffstat (limited to 'SmartDeviceLink/SDLTimer.h')
-rw-r--r--SmartDeviceLink/SDLTimer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLTimer.h b/SmartDeviceLink/SDLTimer.h
index f9f7be3d9..3af2e12d9 100644
--- a/SmartDeviceLink/SDLTimer.h
+++ b/SmartDeviceLink/SDLTimer.h
@@ -6,9 +6,9 @@
@interface SDLTimer : NSObject
-@property (nonatomic, copy) void (^elapsedBlock)(void);
-@property (nonatomic, copy) void (^canceledBlock)(void);
-@property (assign) float duration;
+@property (copy, nonatomic) void (^elapsedBlock)(void);
+@property (copy, nonatomic) void (^canceledBlock)(void);
+@property (assign, nonatomic) float duration;
- (instancetype)init;
- (instancetype)initWithDuration:(float)duration __deprecated;