diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-02-24 20:54:18 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-02-24 20:54:19 +0100 |
commit | 021304503aec1f32321f6e91efc8c82b517909e0 (patch) | |
tree | a1bb8330d9afc0e5f332c7208fa9e389dc510077 | |
parent | Merge "Add a missing #include for openat(2)." (diff) | |
parent | recovery: Don't show "No /cache partition found" on screen. (diff) | |
download | android_bootable_recovery-021304503aec1f32321f6e91efc8c82b517909e0.tar android_bootable_recovery-021304503aec1f32321f6e91efc8c82b517909e0.tar.gz android_bootable_recovery-021304503aec1f32321f6e91efc8c82b517909e0.tar.bz2 android_bootable_recovery-021304503aec1f32321f6e91efc8c82b517909e0.tar.lz android_bootable_recovery-021304503aec1f32321f6e91efc8c82b517909e0.tar.xz android_bootable_recovery-021304503aec1f32321f6e91efc8c82b517909e0.tar.zst android_bootable_recovery-021304503aec1f32321f6e91efc8c82b517909e0.zip |
-rw-r--r-- | recovery.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp index 9dfe5d1bf..8c214beb2 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -961,7 +961,6 @@ static void choose_recovery_file(Device* device) { } } else { // If cache partition is not found, view /tmp/recovery.log instead. - ui->Print("No /cache partition found.\n"); if (access(TEMPORARY_LOG_FILE, R_OK) == -1) { return; } else{ |