File tree 7 files changed +2
-35
lines changed
7 files changed +2
-35
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ -(id) initWithDictionary:(NSMutableDictionary*) jsonObject
15
15
{
16
16
if ((self = [super init ]))
17
17
{
18
- self = [self init ];
19
18
[self setValuesForKeysWithDictionary: jsonObject];
20
19
}
21
20
return self;
Original file line number Diff line number Diff line change 11
11
12
12
@implementation Review
13
13
14
- - (id )init
15
- {
16
- self = [super init ];
17
- if (self) {
18
- // Initialization code here.
19
- }
20
-
21
- return self;
22
- }
23
-
24
14
// ===========================================================
25
15
// Keyed Archiving
26
16
//
Original file line number Diff line number Diff line change @@ -113,8 +113,8 @@ - (BOOL) canMakePhoneCalls
113
113
- (BOOL ) multitaskingCapable
114
114
{
115
115
BOOL backgroundSupported = NO ;
116
- if ([self respondsToSelector: @selector (isMultitaskingSupported )])
117
- backgroundSupported = self.multitaskingCapable ;
116
+ if ([self respondsToSelector: @selector (multitaskingSupported )])
117
+ backgroundSupported = self.multitaskingSupported ;
118
118
119
119
return backgroundSupported;
120
120
}
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ -(id) initWithDictionary:(NSMutableDictionary*) jsonObject
12
12
{
13
13
if ((self = [super init ]))
14
14
{
15
- self = [self init ];
16
15
[self setValuesForKeysWithDictionary: jsonObject];
17
16
}
18
17
return self;
Original file line number Diff line number Diff line change 11
11
12
12
@implementation Review
13
13
14
- - (id )init
15
- {
16
- self = [super init ];
17
- if (self) {
18
- // Initialization code here.
19
- }
20
-
21
- return self;
22
- }
23
-
24
14
// ===========================================================
25
15
// Keyed Archiving
26
16
//
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ -(id) initWithDictionary:(NSMutableDictionary*) jsonObject
15
15
{
16
16
if ((self = [super init ]))
17
17
{
18
- self = [self init ];
19
18
[self setValuesForKeysWithDictionary: jsonObject];
20
19
}
21
20
return self;
Original file line number Diff line number Diff line change 11
11
12
12
@implementation Review
13
13
14
- - (id )init
15
- {
16
- self = [super init ];
17
- if (self) {
18
- // Initialization code here.
19
- }
20
-
21
- return self;
22
- }
23
-
24
14
// ===========================================================
25
15
// Keyed Archiving
26
16
//
You can’t perform that action at this time.
0 commit comments