From bae5bafc625d5957129c9b5655cb5e4df0f56b13 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 4 Apr 2018 14:55:01 -0700 Subject: [PATCH] Formatting: add semi-colon to CPTableColumn.j --- AppKit/CPTableColumn.j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/CPTableColumn.j b/AppKit/CPTableColumn.j index d1bce3c4a..1662782ee 100644 --- a/AppKit/CPTableColumn.j +++ b/AppKit/CPTableColumn.j @@ -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;