-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove duplicate definition of category "YogaDebugging" #1331
Remove duplicate definition of category "YogaDebugging" #1331
Conversation
Source/ASDisplayNode+Yoga.h
Outdated
@@ -48,10 +48,6 @@ AS_EXTERN void ASDisplayNodePerformBlockOnEveryYogaChild(ASDisplayNode * _Nullab | |||
/// For internal usage only | |||
- (void)invalidateCalculatedYogaLayout; | |||
|
|||
@end | |||
|
|||
@interface ASDisplayNode (YogaDebugging) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The category is declared a few lines above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like the naming is kind of off, sorry about that. Could you please update and keep YogaDebugging
and instead rename YogaDebugging
from above to YogaInternal
? Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
It seems this naming was screwed up. We may should follow up with
- ASDisplayNode (Yoga)
- ASDisplayNode (YogaInternal)
- ASDisplayNode (YogaDebugging)
Source/ASDisplayNode+Yoga.h
Outdated
@@ -48,10 +48,6 @@ AS_EXTERN void ASDisplayNodePerformBlockOnEveryYogaChild(ASDisplayNode * _Nullab | |||
/// For internal usage only | |||
- (void)invalidateCalculatedYogaLayout; | |||
|
|||
@end | |||
|
|||
@interface ASDisplayNode (YogaDebugging) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like the naming is kind of off, sorry about that. Could you please update and keep YogaDebugging
and instead rename YogaDebugging
from above to YogaInternal
? Thanks!
3d204d3
to
03a7dc8
Compare
@maicki Done. |
No description provided.