Commit 829501a9 by Sebastián Katzer

Fix compiler warning

parent 6326c334
......@@ -46,7 +46,7 @@ NSString* const DEFAULT_SOUND = @"res://platform_default";
*/
- (id) initWithDict:(NSDictionary*)dictionary
{
self = [super init];
self = [self init];
self.dict = dictionary;
......
......@@ -41,7 +41,7 @@ NSInteger const APPLocalNotificationTypeTriggered = 2;
*/
- (id) initWithOptions:(NSDictionary*)dict
{
self = [super init];
self = [self init];
[self setUserInfo:dict];
[self __init];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment