summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLConsoleController.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLConsoleController.h')
-rw-r--r--SmartDeviceLink/SDLConsoleController.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLConsoleController.h b/SmartDeviceLink/SDLConsoleController.h
index 1376a2b5f..26cbd39cb 100644
--- a/SmartDeviceLink/SDLConsoleController.h
+++ b/SmartDeviceLink/SDLConsoleController.h
@@ -6,6 +6,7 @@
#import "SDLDebugTool.h"
+NS_ASSUME_NONNULL_BEGIN
@interface SDLConsoleController : UITableViewController <SDLDebugToolConsole> {
NSMutableArray<NSDictionary<NSString *, id>*> *messageList;
@@ -13,9 +14,11 @@
NSDateFormatter *dateFormatter;
}
-@property (strong, readonly) NSMutableArray<NSDictionary<NSString *, id>*> *messageList;
+@property (strong, nonatomic, readonly) NSMutableArray<NSDictionary<NSString *, id>*> *messageList;
- (instancetype)initWithTableView:(UITableView *)tableView;
@end
+
+NS_ASSUME_NONNULL_END