Unify indentation and little clean-up in TWRP files
Signed-off-by: Vojtech Bocek <vbocek@gmail.com>
This commit is contained in:
committed by
Gerrit Code Review
parent
8b44bbda25
commit
fafb0c541b
@@ -1104,14 +1104,14 @@ int TWPartitionManager::Wipe_Dalvik_Cache(void) {
|
||||
}
|
||||
}
|
||||
TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
|
||||
if (sdext != NULL) {
|
||||
if (sdext->Is_Present && sdext->Mount(false)) {
|
||||
if (stat("/sd-ext/dalvik-cache", &st) == 0) {
|
||||
TWFunc::removeDir("/sd-ext/dalvik-cache", false);
|
||||
gui_print("Cleaned: /sd-ext/dalvik-cache...\n");
|
||||
}
|
||||
if (sdext && sdext->Is_Present && sdext->Mount(false))
|
||||
{
|
||||
if (stat("/sd-ext/dalvik-cache", &st) == 0)
|
||||
{
|
||||
TWFunc::removeDir("/sd-ext/dalvik-cache", false);
|
||||
gui_print("Cleaned: /sd-ext/dalvik-cache...\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
gui_print("-- Dalvik Cache Directories Wipe Complete!\n\n");
|
||||
return true;
|
||||
}
|
||||
@@ -1893,4 +1893,4 @@ void TWPartitionManager::Output_Storage_Fstab(void) {
|
||||
}
|
||||
}
|
||||
fclose(fp);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user