- Fix description method in PNObject

This commit is contained in:
Giuseppe Nucifora 2016-01-26 13:23:11 +01:00
parent 4c97b281ed
commit c81cae081a

View File

@ -247,6 +247,9 @@
}
- (NSString* _Nonnull) description {
if (!_JSON) {
return [[self reverseMapping] description];
}
return [_JSON description];
}