Remove variable shadows
This commit is contained in:
parent
955c5d039e
commit
2f7de851f4
|
@ -518,10 +518,10 @@ void PCM_TASK_MANAGER::deletePackageDirectories( const wxString&
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delete any empty dirs
|
// Delete any empty dirs
|
||||||
for( const wxString& dir : dirs )
|
for( const wxString& empty_dir : dirs )
|
||||||
{
|
{
|
||||||
wxFileName d( dir, "" );
|
wxFileName dname( empty_dir, "" );
|
||||||
d.Rmdir(); // not passing any flags here will only remove empty directories
|
dname.Rmdir(); // not passing any flags here will only remove empty directories
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue