mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
Use better variable naming.
This commit is contained in:
parent
3c09ef6cbf
commit
74e13f4c70
1 changed files with 3 additions and 3 deletions
|
@ -155,10 +155,10 @@ static ContentManager* sharedInstance = nil;
|
|||
NSMutableArray *keysToDelete = [NSMutableArray array];
|
||||
NSLog(@"Clearing the cache for %@", path);
|
||||
|
||||
for (id path in [_fileNamesCache keyEnumerator]) {
|
||||
for (id p in [_fileNamesCache keyEnumerator]) {
|
||||
//do stuff with obj
|
||||
if ( [path hasPrefix:path] ) {
|
||||
[keysToDelete addObject:path];
|
||||
if ( [p hasPrefix:path] ) {
|
||||
[keysToDelete addObject:p];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue