Remove white space

This commit is contained in:
Gregory John Casamento 2019-06-17 12:15:26 -04:00
parent d20efecead
commit 353aa6c8e5
2 changed files with 2 additions and 2 deletions

View file

@ -283,7 +283,7 @@ DEFINE_BLOCK_TYPE(GSPredicateBlock, BOOL, GS_GENERIC_TYPE(ElementT),
- (GS_GENERIC_CLASS(NSArray, ElementT) *) - (GS_GENERIC_CLASS(NSArray, ElementT) *)
sortedArrayWithOptions: (NSSortOptions)options sortedArrayWithOptions: (NSSortOptions)options
usingComparator: (NSComparator)comparator; usingComparator: (NSComparator)comparator;
/** /**
* Performs a binary search of the array within the specified range for the * Performs a binary search of the array within the specified range for the
* index of an object equal to obj according to cmp. * index of an object equal to obj according to cmp.

View file

@ -315,8 +315,8 @@ static Class mutableSetClass;
- (void) replaceObjectAtIndex: (NSUInteger)index - (void) replaceObjectAtIndex: (NSUInteger)index
withObject: (id)obj withObject: (id)obj
{ {
[self _insertObject: obj atIndex: index];
[self removeObjectAtIndex: index]; [self removeObjectAtIndex: index];
[self _insertObject: obj atIndex: index];
} }
- (id) init - (id) init