Remove unused variable.

This commit is contained in:
fredkiefer 2020-05-09 21:11:01 +02:00
parent 2cca7e44aa
commit ec0e80eaee

View file

@ -220,12 +220,11 @@ static Class pathComponentCellClass;
- (void) drawInteriorWithFrame: (NSRect)frame inView: (NSView *)controlView
{
NSUInteger count = [_pathComponentCells count];
NSEnumerator *en = [_pathComponentCells objectEnumerator];
NSPathComponentCell *cell = nil;
[super drawInteriorWithFrame: frame
inView: controlView];
NSEnumerator *en = [_pathComponentCells objectEnumerator];
NSPathComponentCell *cell = nil;
while ((cell = (NSPathComponentCell *)[en nextObject]) != nil)
{