Merge pull request #2648 from bedalton/formatting-add-semi-colons-cptablecolumn

Formatting: add semi-colon to CPTableColumn.j
This commit is contained in:
Alexandre Wilhelm
2018-04-08 11:27:25 -07:00
committed by GitHub
+2 -2
View File
@@ -287,7 +287,7 @@ CPTableColumnUserResizingMask = 1 << 1;
if (width < [self minWidth])
[self setMinWidth:width];
else if (width > [self maxWidth])
[self setMaxWidth:width]
[self setMaxWidth:width];
if (_width !== width)
[self setWidth:width];
@@ -499,7 +499,7 @@ CPTableColumnUserResizingMask = 1 << 1;
*/
- (void)setHidden:(BOOL)shouldBeHidden
{
shouldBeHidden = !!shouldBeHidden
shouldBeHidden = !!shouldBeHidden;
if (_isHidden === shouldBeHidden)
return;