Skip to content
Snippets Groups Projects
Commit 3a06d618 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix array-related errorprone warnings" am: 370d41de

parents 7005e0c1 370d41de
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@ import android.os.ParcelFileDescriptor;
import android.util.Log;
import java.io.FileNotFoundException;
import java.util.Arrays;
import javax.annotation.Nullable;
......@@ -62,7 +63,8 @@ public class DownloadManagerWrapper {
// We couldn't remove the file from DownloadManager. Apparently, the database can't
// be opened. It may be a problem with file system corruption. In any case, there is
// not much we can do apart from avoiding crashing.
Log.e(TAG, "Can't remove files with ID " + ids + " from download manager", e);
Log.e(TAG, "Can't remove files with ID " + Arrays.toString(ids) +
" from download manager", e);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment