Skip to content

Commit dfeafb6

Browse files
committed
* cleanup
1 parent 0245755 commit dfeafb6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

JSONModel/JSONModel/JSONModel.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,9 @@ -(instancetype)initWithCoder:(NSCoder *)decoder
12791279

12801280
JSONModelError *error = nil;
12811281
self = [self initWithString:json error:&error];
1282-
if(error) JMLog(@"%@",[error localizedDescription]);
1282+
if (error) {
1283+
JMLog(@"%@",[error localizedDescription]);
1284+
}
12831285
return self;
12841286
}
12851287

0 commit comments

Comments
 (0)