Last active
October 8, 2015 08:34
-
-
Save stanislaw/7e0c9c35d94f673a5576 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// DO CHANGE | |
/// | |
self = [super init]; | |
if (self == nil) { | |
return nil; | |
} | |
/// | |
self = [super init]; | |
if (self == nil) return nil; | |
/// | |
self = [super init]; | |
if (self) { | |
self.bla = nil; | |
} | |
/// | |
if (self = [super init]) { | |
self.bla = nil; | |
} | |
// DO NOT CHANGE | |
/// | |
self = [super init]; | |
if (self) { | |
_bla = nil; | |
} | |
/// | |
if (self = [super init]) { | |
_bla = nil; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment