1
0
Fork 0

For #357 - Adds some descriptive comments for temporary values

master
Jeff Boek 2019-02-15 14:34:11 -08:00
parent 4263f8ab3e
commit 007cefa281
1 changed files with 4 additions and 0 deletions

View File

@ -210,12 +210,16 @@ class HistoryAdapter(
override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
when (holder) {
is HistoryDeleteViewHolder -> holder.bind(mode)
// Temporarily hard code the header until
// we build out support for time based sections
is HistoryHeaderViewHolder -> holder.bind("Today")
is HistoryListItemViewHolder -> holder.bind(items[position - NUMBER_OF_SECTIONS], mode)
}
}
companion object {
// Temporarily hard code the number of sections until
// we build out support for time based sections
private const val NUMBER_OF_SECTIONS = 2
}
}