summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnTouchEvent.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLOnTouchEvent.m')
-rw-r--r--SmartDeviceLink/SDLOnTouchEvent.m8
1 files changed, 1 insertions, 7 deletions
diff --git a/SmartDeviceLink/SDLOnTouchEvent.m b/SmartDeviceLink/SDLOnTouchEvent.m
index e73c79603..15c0905a6 100644
--- a/SmartDeviceLink/SDLOnTouchEvent.m
+++ b/SmartDeviceLink/SDLOnTouchEvent.m
@@ -16,12 +16,6 @@
return self;
}
-- (instancetype)initWithDictionary:(NSMutableDictionary *)dict {
- if (self = [super initWithDictionary:dict]) {
- }
- return self;
-}
-
- (void)setType:(SDLTouchType *)type {
if (type != nil) {
[parameters setObject:type forKey:NAMES_type];
@@ -54,7 +48,7 @@
} else {
NSMutableArray *newList = [NSMutableArray arrayWithCapacity:[array count]];
for (NSDictionary *dict in array) {
- [newList addObject:[[SDLTouchEvent alloc] initWithDictionary:(NSMutableDictionary *)dict]];
+ [newList addObject:[[SDLTouchEvent alloc] initWithDictionary:(NSDictionary *)dict]];
}
return newList;
}