Fix ktlint

This commit is contained in:
Lucas Lima 2020-11-06 23:50:14 -03:00
parent 6504752768
commit 380157f6a0

View file

@ -431,7 +431,9 @@ class FixedGridLayoutManager : RecyclerView.LayoutManager() {
*/ */
measureChildWithMargins(view, 0, 0) measureChildWithMargins(view, 0, 0)
layoutDecorated( layoutDecorated(
view, leftOffset, topOffset, view,
leftOffset,
topOffset,
leftOffset + mDecoratedChildWidth, leftOffset + mDecoratedChildWidth,
topOffset + mDecoratedChildHeight topOffset + mDecoratedChildHeight
) )
@ -821,7 +823,9 @@ class FixedGridLayoutManager : RecyclerView.LayoutManager() {
measureChildWithMargins(child, 0, 0) measureChildWithMargins(child, 0, 0)
layoutDecorated( layoutDecorated(
child, layoutLeft, layoutTop, child,
layoutLeft,
layoutTop,
layoutLeft + mDecoratedChildWidth, layoutLeft + mDecoratedChildWidth,
layoutTop + mDecoratedChildHeight layoutTop + mDecoratedChildHeight
) )