Skip to content

Commit

Permalink
fix missing stub for restorePackage in specials
Browse files Browse the repository at this point in the history
  • Loading branch information
hg42 committed Oct 12, 2023
1 parent 9452452 commit 3edaaa0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ open class RestoreAppAction(context: Context, work: AppActionWork?, shell: Shell
).joinToString(" ")

@Throws(PackageManagerDataIncompleteException::class)
private fun refreshAppInfo(context: Context, app: Package) {
open fun refreshAppInfo(context: Context, app: Package) {
val sleepTimeMs = 1000L

// delay before first try
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,10 @@ class RestoreSpecialAction(context: Context, work: AppActionWork?, shell: ShellH
// stub
}

override fun refreshAppInfo(context: Context, app: Package) {
// stub
}

companion object {
private fun areBasefilesSubsetOf(
set: Array<RootFile>,
Expand Down

0 comments on commit 3edaaa0

Please sign in to comment.