Skip to content

Commit

Permalink
replace field private to public
Browse files Browse the repository at this point in the history
  • Loading branch information
hoanganhtuan95ptit committed Dec 29, 2022
1 parent 861df56 commit d282fc1
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 29 deletions.
Binary file modified .gradle/7.2/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/7.2/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 1 addition & 1 deletion .idea/modules/core-app/Core.core-app.androidTest.iml

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions .idea/modules/core-app/Core.core-app.main.iml

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions .idea/modules/core-app/Core.core-app.unitTest.iml

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion core-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,18 @@ dependencies {

api koinDependencies.values()

api androidxDependencies.values()

api coroutinesDependencies.values()

api androidxDependencies.values()

api platform("com.google.firebase:firebase-bom:$firebase_bom_version")
api('com.google.firebase:firebase-auth') {
exclude module: "play-services-safetynet"
}
api firebaseDependencies.values()


api "com.google.android.material:material:$material_components_version"

api "com.squareup.retrofit2:converter-jackson:$retrofit_version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ class MultiAdapter(
private val onViewHolderDetachedFromWindow: (BaseBindingViewHolder<*>) -> Unit = {},
) : BaseAsyncAdapter<ViewItemCloneable, ViewBinding>(onLoadMore) {

private val list: List<ViewItemAdapter<ViewItemCloneable, ViewBinding>> by lazy {
val list: List<ViewItemAdapter<ViewItemCloneable, ViewBinding>> by lazy {

val adapters = adapter.toMutableList()

adapters
}

private val typeAndAdapter: Map<Int, ViewItemAdapter<ViewItemCloneable, ViewBinding>> by lazy {
val typeAndAdapter: Map<Int, ViewItemAdapter<ViewItemCloneable, ViewBinding>> by lazy {

val map = HashMap<Int, ViewItemAdapter<ViewItemCloneable, ViewBinding>>()

Expand All @@ -74,7 +74,7 @@ class MultiAdapter(
map
}

private val viewItemClassAndType: Map<Class<*>, Int> by lazy {
val viewItemClassAndType: Map<Class<*>, Int> by lazy {

val map = HashMap<Class<*>, Int>()

Expand Down

0 comments on commit d282fc1

Please sign in to comment.