diff options
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeVehicleData.m')
-rw-r--r-- | SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeVehicleData.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeVehicleData.m b/SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeVehicleData.m index ece608362..335ba5a44 100644 --- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeVehicleData.m +++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeVehicleData.m @@ -8,12 +8,12 @@ @implementation SDLUnsubscribeVehicleData --(id) init { +-(instancetype) init { if (self = [super initWithName:NAMES_UnsubscribeVehicleData]) {} return self; } --(id) initWithDictionary:(NSMutableDictionary*) dict { +-(instancetype) initWithDictionary:(NSMutableDictionary*) dict { if (self = [super initWithDictionary:dict]) {} return self; } |