summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLListFilesResponse.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLListFilesResponse.m')
-rw-r--r--SmartDeviceLink/SDLListFilesResponse.m8
1 files changed, 6 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLListFilesResponse.m b/SmartDeviceLink/SDLListFilesResponse.m
index 8ae451edd..e803a83b5 100644
--- a/SmartDeviceLink/SDLListFilesResponse.m
+++ b/SmartDeviceLink/SDLListFilesResponse.m
@@ -7,6 +7,8 @@
#import "NSMutableDictionary+Store.h"
#import "SDLNames.h"
+NS_ASSUME_NONNULL_BEGIN
+
@implementation SDLListFilesResponse
- (instancetype)init {
@@ -15,11 +17,11 @@
return self;
}
-- (void)setFilenames:(NSMutableArray<NSString *> *)filenames {
+- (void)setFilenames:(nullable NSMutableArray<NSString *> *)filenames {
[parameters sdl_setObject:filenames forName:SDLNameFilenames];
}
-- (NSMutableArray<NSString *> *)filenames {
+- (nullable NSMutableArray<NSString *> *)filenames {
return [parameters objectForKey:SDLNameFilenames];
}
@@ -32,3 +34,5 @@
}
@end
+
+NS_ASSUME_NONNULL_END