From f9b867c3eb561d3b9376bbd815012f9e567ee316 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 4 Apr 2018 14:36:07 -0700 Subject: [PATCH] Formatting: Remove semi-colon after method header in CPLevelIndicator On lines 295 and 304, the selector for two method declarations are followed by a semi-colon. Not sure if this causes problems or not, but removed anyways. --- AppKit/CPLevelIndicator.j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/CPLevelIndicator.j b/AppKit/CPLevelIndicator.j index c4e6422ee..94319181f 100644 --- a/AppKit/CPLevelIndicator.j +++ b/AppKit/CPLevelIndicator.j @@ -292,7 +292,7 @@ CPRatingLevelIndicatorStyle = 3; [self setNeedsLayout]; } -- (void)setWarningValue:(double)warningValue; +- (void)setWarningValue:(double)warningValue { if (_warningValue === warningValue) return; @@ -301,7 +301,7 @@ CPRatingLevelIndicatorStyle = 3; [self setNeedsLayout]; } -- (void)setCriticalValue:(double)criticalValue; +- (void)setCriticalValue:(double)criticalValue { if (_criticalValue === criticalValue) return;