Skip to content
Snippets Groups Projects
Commit 5d387433 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Use correct int for accessing snapshots in array" into main

parents 5570d884 783a4505
No related branches found
No related tags found
No related merge requests found
......@@ -70,10 +70,10 @@ data class ThumbnailData(
@JvmStatic
fun wrap(taskIds: IntArray?, snapshots: Array<TaskSnapshot>?): HashMap<Int, ThumbnailData> {
return if (taskIds == null || snapshots == null || taskIds.size != snapshots.size) {
HashMap()
} else {
HashMap(taskIds.associateWith { taskId -> fromSnapshot(snapshots[taskId]) })
return hashMapOf<Int, ThumbnailData>().apply {
if (taskIds != null && snapshots != null && taskIds.size == snapshots.size) {
repeat(snapshots.size) { put(taskIds[it], fromSnapshot(snapshots[it])) }
}
}
}
......
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