You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently -[ASDisplayNode clearContents] is accessing instance variables and therefore should be prefixed with _locked, but subclasses like -[ASCollectionNode clearContents] is accessing properties via selfor sometimes instance variables. We should improve the situation around clearContents and make it clear when we need to grab a lock or when the method is already called with the lock held.
The text was updated successfully, but these errors were encountered:
Currently
-[ASDisplayNode clearContents]
is accessing instance variables and therefore should be prefixed with_locked
, but subclasses like-[ASCollectionNode clearContents]
is accessing properties viaself
or sometimes instance variables. We should improve the situation aroundclearContents
and make it clear when we need to grab a lock or when the method is already called with the lock held.The text was updated successfully, but these errors were encountered: