Skip to content

Commit

Permalink
Fix max line length
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirom committed Feb 3, 2019
1 parent 02ad28b commit d0a2d5d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import com.xwray.groupie.Item
import com.xwray.groupie.ViewHolder
import io.github.droidkaigi.confsched2019.widget.component.R

class SearchSectionHeaderItem(private val title: CharSequence) : Item<ViewHolder>(title.hashCode().toLong()),
class SearchSectionHeaderItem(
private val title: CharSequence
) : Item<ViewHolder>(title.hashCode().toLong()),
EqualableContentsProvider {
override fun getLayout(): Int = R.layout.view_section_header

Expand Down

0 comments on commit d0a2d5d

Please sign in to comment.