Skip to content

Commit 7d2fd0a

Browse files
author
Varun Gupta
committed
Fix Ktlint errors
1 parent fd5fd72 commit 7d2fd0a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

epoxy-adapter/src/main/java/com/airbnb/epoxy/AsyncFrameLayout.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ abstract class AsyncFrameLayout @JvmOverloads constructor(
1313
attrs: AttributeSet? = null,
1414
defStyleAttr: Int = 0
1515
) : FrameLayout(context, attrs, defStyleAttr), AsyncInflatedView {
16-
override var isInflated : Boolean = false
17-
override var pendingRunnables : ArrayList<Runnable> = ArrayList()
16+
override var isInflated: Boolean = false
17+
override var pendingRunnables: ArrayList<Runnable> = ArrayList()
1818

1919
@OnViewRecycled
2020
fun onRecycle() {
2121
onViewRecycled()
2222
}
23-
}
23+
}

epoxy-adapter/src/main/java/com/airbnb/epoxy/AsyncInflatedView.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ interface AsyncInflatedView {
1414
* isInflated flag is set to true once the async inflation is completed.
1515
* It is used to run any methods/runnables that requires the view to be inflated.
1616
*/
17-
var isInflated : Boolean
17+
var isInflated: Boolean
1818

1919
/**
2020
* pendingRunnables keep a list of runnables, in order, that are waiting for the view to be
2121
* inflated.
2222
*/
23-
var pendingRunnables : ArrayList<Runnable>
23+
var pendingRunnables: ArrayList<Runnable>
2424

2525
/**
2626
* onInflationComplete method MUST be called after the view is asyncronously inflated.
@@ -54,4 +54,4 @@ interface AsyncInflatedView {
5454
fun onViewRecycled() {
5555
pendingRunnables.clear()
5656
}
57-
}
57+
}

0 commit comments

Comments
 (0)