Remove static method declarations.
Summary: Since these functions are private and only used in the implementation file, we don't need to declare them beforehand. Reviewed By: emilsjolander Differential Revision: D4088488 fbshipit-source-id: 738175a4aae27d88d32f8c2cf6b47a4f6ae32aab
This commit is contained in:
committed by
Facebook Github Bot
parent
3201e24780
commit
620cb3f507
@@ -11,9 +11,6 @@
|
|||||||
|
|
||||||
#import <objc/runtime.h>
|
#import <objc/runtime.h>
|
||||||
|
|
||||||
static void _attachNodesRecursive(UIView *view);
|
|
||||||
static void _updateFrameRecursive(UIView *view);
|
|
||||||
|
|
||||||
@interface CSSNodeBridge : NSObject
|
@interface CSSNodeBridge : NSObject
|
||||||
@property (nonatomic, assign) CSSNodeRef cnode;
|
@property (nonatomic, assign) CSSNodeRef cnode;
|
||||||
@end
|
@end
|
||||||
@@ -234,8 +231,6 @@ static CSSSize _measure(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
|
||||||
|
|
||||||
static void _attachNodesRecursive(UIView *view) {
|
static void _attachNodesRecursive(UIView *view) {
|
||||||
CSSNodeRef node = [view cssNode];
|
CSSNodeRef node = [view cssNode];
|
||||||
const BOOL usesFlexbox = [view css_usesFlexbox];
|
const BOOL usesFlexbox = [view css_usesFlexbox];
|
||||||
@@ -290,3 +285,5 @@ static void _updateFrameRecursive(UIView *view) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
|
Reference in New Issue
Block a user