Kill border API.

Summary: We don't want to expose this in our first usage. Lets kill it.

Reviewed By: emilsjolander

Differential Revision: D4140377

fbshipit-source-id: 0c53845ec65466692b847a5ce40c3b9823dd9557
This commit is contained in:
Dustin Shahidehpour
2016-11-07 13:35:03 -08:00
committed by Facebook Github Bot
parent 366a61af8d
commit 7082734c6b
2 changed files with 0 additions and 6 deletions

View File

@@ -31,7 +31,6 @@
- (void)css_setPosition:(CGFloat)position forEdge:(CSSEdge)edge;
- (void)css_setMargin:(CGFloat)margin forEdge:(CSSEdge)edge;
- (void)css_setPadding:(CGFloat)padding forEdge:(CSSEdge)edge;
- (void)css_setBorder:(CGFloat)border forEdge:(CSSEdge)edge;
- (void)css_setWidth:(CGFloat)width;
- (void)css_setHeight:(CGFloat)height;

View File

@@ -130,11 +130,6 @@
CSSNodeStyleSetPadding([self cssNode], edge, padding);
}
- (void)css_setBorder:(CGFloat)border forEdge:(CSSEdge)edge
{
CSSNodeStyleSetBorder([self cssNode], edge, border);
}
- (void)css_setWidth:(CGFloat)width
{
CSSNodeStyleSetWidth([self cssNode], width);