Skip to content

Commit

Permalink
style: reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
sds100 committed Dec 28, 2024
1 parent 297f9de commit 5e4b6bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,17 +171,16 @@ class ChooseActionViewModel(
message = getString(R.string.action_open_app_dialog_message),
title = getString(R.string.action_open_app_dialog_title),
positiveButtonText = getString(R.string.action_open_app_dialog_read_more_button),
negativeButtonText = getString(R.string.action_open_app_dialog_ignore_button)
negativeButtonText = getString(R.string.action_open_app_dialog_ignore_button),
),
)

if (response == DialogResponse.POSITIVE) {
showPopup(
"app_action_permission_info",
PopupUi.OpenUrl(getString(R.string.url_action_guide))
PopupUi.OpenUrl(getString(R.string.url_action_guide)),
)
return false

} else {
return response != null
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class KeyEventRelayService : Service() {

private inner class ClientConnection(
private val clientPackageName: String,
val callback: IKeyEventRelayServiceCallback
val callback: IKeyEventRelayServiceCallback,
) : DeathRecipient {
override fun binderDied() {
Timber.d("Client binder died: $clientPackageName")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ class KeyEventRelayServiceWrapperImpl(
// while there is no registered connection.
}
}

}

interface KeyEventRelayServiceWrapper {
Expand Down

0 comments on commit 5e4b6bb

Please sign in to comment.