Change do..while to while

This commit is contained in:
Gregory John Casamento 2020-05-07 18:57:02 -04:00
parent 3d711b5672
commit 58e50ff079

View file

@ -298,7 +298,7 @@ static Class pathComponentCellClass;
NSURL *u = [url copy];
// Decompose string...
do
while (at_root == NO)
{
NSPathComponentCell *cell = [[NSPathComponentCell alloc] init];
NSImage *image = nil;
@ -351,7 +351,6 @@ static Class pathComponentCellClass;
u = [NSURL URLWithString: @"/"];
}
}
while (at_root == NO);
}
return [array copy];