Skip to content

Commit

Permalink
Fix visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-knyazev committed Jan 10, 2023
1 parent 9bf99e7 commit 6b9213c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import kotlinx.android.parcel.Parcelize
@Parcelize
open class ActivityLauncher(
protected val activityClass: Class<out Activity>,
private val bundle: Bundle? = null,
protected val bundle: Bundle? = null,
private var flags: Int = 0
) : BaseIntentLauncher() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import java.lang.IllegalArgumentException
@Parcelize
open class DialogFragmentLauncher(
protected val fragmentClass: Class<out DialogFragment>,
private val bundle: Bundle? = null
protected val bundle: Bundle? = null
) : Launcher {

constructor(fragmentClass: Class<out DialogFragment>, vararg extraParams: BundlePair)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import kotlinx.android.parcel.Parcelize
@Parcelize
open class FragmentLauncher(
protected val fragmentClass: Class<out Fragment>,
private val bundle: Bundle? = null
protected val bundle: Bundle? = null
) : Launcher {

constructor(fragmentClass: Class<out Fragment>, vararg extraParams: BundlePair)
Expand All @@ -33,7 +33,7 @@ open class FragmentLauncher(
}
}

protected open fun createFragment(): Fragment {
open fun createFragment(): Fragment {
val fragment = fragmentClass.newInstance()
fragment.arguments = bundle
return fragment
Expand Down

0 comments on commit 6b9213c

Please sign in to comment.