Skip to content

Commit ab5dcc2

Browse files
andrey-krukovskiyflovilmart
authored andcommitted
Use getter instead accessing instance variable (#1026)
1 parent b5db27a commit ab5dcc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Parse/PFObject.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ + (void)collectDirtyChildren:(id)node
268268
// Recurse into this object's children looking for dirty children.
269269
// We only need to look at the child object's current estimated data,
270270
// because that's the only data that might need to be saved now.
271-
toSearch = [object->_estimatedData.dictionaryRepresentation copy];
271+
toSearch = [object._estimatedData.dictionaryRepresentation copy];
272272
}
273273

274274
[self collectDirtyChildren:toSearch

0 commit comments

Comments
 (0)