From a8a74a02461b2452acd8e8ff9645b78d8b59df36 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 4 Apr 2018 14:37:34 -0700 Subject: [PATCH] Formatting: add semi-colons to CPOutlineView.j --- AppKit/CPOutlineView.j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/CPOutlineView.j b/AppKit/CPOutlineView.j index eeec78938..e3533799f 100644 --- a/AppKit/CPOutlineView.j +++ b/AppKit/CPOutlineView.j @@ -1923,7 +1923,7 @@ var CPOutlineViewCoalesceSelectionNotificationStateOff = 0, while (index !== CPNotFound) { - [items addObject:[_outlineView itemAtRow:index]] + [items addObject:[_outlineView itemAtRow:index]]; index = [theIndexes indexGreaterThanIndex:index]; } @@ -1957,7 +1957,7 @@ var CPOutlineViewCoalesceSelectionNotificationStateOff = 0, - (void)_parentItemForDropOperation:(CPTableViewDropOperation)theDropOperation row:(CPInteger)theRow offset:(CGPoint)theOffset { if (theDropOperation === CPTableViewDropAbove) - return [_outlineView _parentItemForUpperRow:theRow - 1 andLowerRow:theRow atMouseOffset:theOffset] + return [_outlineView _parentItemForUpperRow:theRow - 1 andLowerRow:theRow atMouseOffset:theOffset]; return [_outlineView itemAtRow:theRow]; }