Skip to content

Commit

Permalink
Refactor internal methods to avoid duplicate JVM signature (#621)
Browse files Browse the repository at this point in the history
* Rename internal method to avoid duplicate JVM signature
* Use core-annotated method approach instead of renaming
  • Loading branch information
jbarr21 authored Oct 31, 2023
1 parent 73a5958 commit 69903fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,4 @@ abstract class ViewRouter<V : View, I : Interactor<*, *>> : Router<I> {
XRay.apply(this, view)
}
}

internal fun saveInstanceStateInternal(outState: Bundle) {
saveInstanceState(outState)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ protected constructor(
return children
}

internal fun saveInstanceStateInternal(outState: Bundle) {
@CoreFriendModuleApi
public fun saveInstanceStateInternal(outState: Bundle) {
saveInstanceState(outState)
}

Expand Down

0 comments on commit 69903fd

Please sign in to comment.