From b40cb44c60444309816921d14caa9d720dcd57c4 Mon Sep 17 00:00:00 2001 From: Maxime Date: Tue, 17 May 2016 15:37:11 +0200 Subject: [PATCH] Update PFObjectState.m Fix a double call to init. --- Parse/Internal/Object/State/PFObjectState.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parse/Internal/Object/State/PFObjectState.m b/Parse/Internal/Object/State/PFObjectState.m index c4729cb95..3dbe94b84 100644 --- a/Parse/Internal/Object/State/PFObjectState.m +++ b/Parse/Internal/Object/State/PFObjectState.m @@ -28,7 +28,7 @@ - (instancetype)init { _serverData = [NSMutableDictionary dictionary]; - return [super init]; + return self; } - (instancetype)initWithState:(PFObjectState *)state {