Skip to content

Commit 9415f52

Browse files
Treehugger Robotandroid-build-merge-worker-robot
authored andcommitted
Merge "Fix array-related errorprone warnings" am: 370d41d am: 3a06d61 am: e546038 am: 51466cf am: 2549e98
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186538 Change-Id: Idd10a3df6c0a34fe3d14d493a8af5b64338f298f Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
2 parents f13c5c7 + 2549e98 commit 9415f52

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

java/src/com/android/inputmethod/dictionarypack/DownloadManagerWrapper.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import android.util.Log;
2727

2828
import java.io.FileNotFoundException;
29+
import java.util.Arrays;
2930

3031
import javax.annotation.Nullable;
3132

@@ -62,7 +63,8 @@ public void remove(final long... ids) {
6263
// We couldn't remove the file from DownloadManager. Apparently, the database can't
6364
// be opened. It may be a problem with file system corruption. In any case, there is
6465
// not much we can do apart from avoiding crashing.
65-
Log.e(TAG, "Can't remove files with ID " + ids + " from download manager", e);
66+
Log.e(TAG, "Can't remove files with ID " + Arrays.toString(ids) +
67+
" from download manager", e);
6668
}
6769
}
6870

0 commit comments

Comments
 (0)