File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -408,16 +408,16 @@ -(NSString *)printAllPropertysIsContainParent:(BOOL)containParent
408
408
{
409
409
#ifdef DEBUG
410
410
Class clazz = [self class ];
411
- NSMutableString * sb = [NSMutableString stringWithFormat: @" \n <%@ > :\n " , clazz];
411
+ NSMutableString * sb = [NSMutableString stringWithFormat: @" \n <%@ > :\n " , NSStringFromClass ( clazz) ];
412
412
[sb appendFormat: @" rowid : %d \n " ,self .rowid];
413
- [NSObject mutableString: sb appendPropertyStringWithClass: clazz containParent: containParent];
413
+ [self mutableString: sb appendPropertyStringWithClass: clazz containParent: containParent];
414
414
NSLog (@" %@ " ,sb);
415
415
return sb;
416
416
#else
417
417
return @" " ;
418
418
#endif
419
419
}
420
- + (void )mutableString : (NSMutableString *)sb appendPropertyStringWithClass : (Class )clazz containParent : (BOOL )containParent
420
+ - (void )mutableString : (NSMutableString *)sb appendPropertyStringWithClass : (Class )clazz containParent : (BOOL )containParent
421
421
{
422
422
unsigned int outCount, i;
423
423
objc_property_t *properties = class_copyPropertyList (clazz, &outCount);
@@ -429,6 +429,7 @@ +(void)mutableString:(NSMutableString*)sb appendPropertyStringWithClass:(Class)c
429
429
free (properties);
430
430
if (containParent)
431
431
{
432
+
432
433
[self mutableString: sb appendPropertyStringWithClass: self .superclass containParent: containParent];
433
434
}
434
435
}
You can’t perform that action at this time.
0 commit comments