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:
Dustin Shahidehpour
2016-10-27 12:45:07 -07:00
committed by Facebook Github Bot
parent 3201e24780
commit 620cb3f507

View File

@@ -11,9 +11,6 @@
#import <objc/runtime.h>
static void _attachNodesRecursive(UIView *view);
static void _updateFrameRecursive(UIView *view);
@interface CSSNodeBridge : NSObject
@property (nonatomic, assign) CSSNodeRef cnode;
@end
@@ -234,8 +231,6 @@ static CSSSize _measure(
};
}
@end
static void _attachNodesRecursive(UIView *view) {
CSSNodeRef node = [view cssNode];
const BOOL usesFlexbox = [view css_usesFlexbox];
@@ -290,3 +285,5 @@ static void _updateFrameRecursive(UIView *view) {
}
}
}
@end