Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Suppress DELEGATED_MEMBER_HIDES_SUPERTYPE_OVERRIDE
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Jun 25, 2024
1 parent 8004f58 commit 4142d19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import kotlinx.collections.immutable.toImmutableList
* @version 1.0.0
* @since 1.0.0
*/
@Suppress("DELEGATED_MEMBER_HIDES_SUPERTYPE_OVERRIDE")
abstract class BaseRvAdapter<M : IVhModelType> private constructor(
private val delegate: IMutableRvAdapter.Impl<M, BaseRvAdapter<M>>,
) : RecyclerView.Adapter<BindingViewHolder>(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import kotlinx.collections.immutable.toImmutableList
* @version 1.0.0
* @since 1.0.0
*/
@Suppress("DELEGATED_MEMBER_HIDES_SUPERTYPE_OVERRIDE")
abstract class BaseRvDiffAdapter<M : IDiffVhModelType> private constructor(
asyncDifferConfig: AsyncDifferConfig<M>,
private val delegate: IMutableRvAdapter.Impl<M, BaseRvDiffAdapter<M>>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import io.goooler.demoapp.adapter.rv.diff.IDiffVhModelType
* @version 1.0.0
* @since 1.0.0
*/
@Suppress("DELEGATED_MEMBER_HIDES_SUPERTYPE_OVERRIDE")
abstract class BaseRvPagingAdapter<M : IDiffVhModelType> private constructor(
callback: DiffCallback<M>,
private val delegate: IRvAdapter.Impl<M, BaseRvPagingAdapter<M>>,
Expand Down

0 comments on commit 4142d19

Please sign in to comment.