diff options
author | Allan Wang <me@allanwang.ca> | 2019-07-01 13:47:41 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-07-01 13:47:41 -0700 |
commit | f264bc4735e6d1aa9f9683f56b3c5f6e05c5a20b (patch) | |
tree | 676cb16cd4c8d1c4bdb2d7183cef36f637852619 /adapter | |
parent | 8c259e6acc283e50348a8f8825504eed482bf610 (diff) | |
download | kau-f264bc4735e6d1aa9f9683f56b3c5f6e05c5a20b.tar.gz kau-f264bc4735e6d1aa9f9683f56b3c5f6e05c5a20b.tar.bz2 kau-f264bc4735e6d1aa9f9683f56b3c5f6e05c5a20b.zip |
Make noanimatorchange an object, resolves #212
Diffstat (limited to 'adapter')
-rw-r--r-- | adapter/src/main/kotlin/ca/allanwang/kau/animators/NoAnimator.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adapter/src/main/kotlin/ca/allanwang/kau/animators/NoAnimator.kt b/adapter/src/main/kotlin/ca/allanwang/kau/animators/NoAnimator.kt index cca8a25..52b6123 100644 --- a/adapter/src/main/kotlin/ca/allanwang/kau/animators/NoAnimator.kt +++ b/adapter/src/main/kotlin/ca/allanwang/kau/animators/NoAnimator.kt @@ -42,7 +42,7 @@ class NoAnimatorRemove(override var itemDelayFactor: Float = 0f) : KauAnimatorRe override fun getDelay(remove: Long, move: Long, change: Long): Long = 0L } -class NoAnimatorChange : KauAnimatorChange { +object NoAnimatorChange : KauAnimatorChange { override fun changeOldAnimation( holder: RecyclerView.ViewHolder, |