Skip to content

Commit

Permalink
Expose ViewModelMap and FragmentMap
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellogalhardo committed Sep 7, 2021
1 parent e1f6267 commit b65d8ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ package com.deliveryhero.whetstone.fragment
import androidx.fragment.app.Fragment
import javax.inject.Provider

internal typealias FragmentMap = Map<Class<out Fragment>, @JvmSuppressWildcards Provider<Fragment>>
public typealias FragmentMap = Map<Class<out Fragment>, @JvmSuppressWildcards Provider<Fragment>>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import javax.inject.Inject

@OptIn(InternalInjectApi::class)
@ContributesBinding(ApplicationScope::class)
public class MultibindingViewModelFactoryProvider @Inject constructor(
public class MultibindingViewModelFactoryProducer @Inject constructor(
private val viewModelComponentFactory: ViewModelComponentFactory,
) : ViewModelFactoryProducer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ package com.deliveryhero.whetstone.viewmodel
import androidx.lifecycle.ViewModel
import javax.inject.Provider

internal typealias ViewModelMap = Map<Class<out ViewModel>, @JvmSuppressWildcards Provider<ViewModel>>
public typealias ViewModelMap = Map<Class<out ViewModel>, @JvmSuppressWildcards Provider<ViewModel>>

0 comments on commit b65d8ea

Please sign in to comment.