Skip to content

Commit

Permalink
Track HostApi change
Browse files Browse the repository at this point in the history
  • Loading branch information
squarejesse committed Dec 9, 2024
1 parent 3d6e4bf commit 3bdcb1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ class IosHostApi : HostApi {
}
}

func log(message: String) {
}

func close() {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,7 @@ class RealHostApi(
continuation.invokeOnCancellation { call.cancel() }
}
}

override fun log(message: String) {
}
}

0 comments on commit 3bdcb1c

Please sign in to comment.