Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dca74bcb authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Have external resource call init() explicitly." into main

parents 46636f22 fa6ca0fe
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -73,9 +73,7 @@ class SandboxApplication private constructor(private val base: SandboxApplicatio

    override fun apply(statement: Statement, description: Description): Statement {
        return object : ExternalResource() {
                override fun before() {
                    base.app = this@SandboxApplication
                }
                override fun before() = init()

                override fun after() = onDestroy()
            }