File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
app/src/main/java/io/github/sds100/keymapper Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -171,17 +171,16 @@ class ChooseActionViewModel(
171171 message = getString(R .string.action_open_app_dialog_message),
172172 title = getString(R .string.action_open_app_dialog_title),
173173 positiveButtonText = getString(R .string.action_open_app_dialog_read_more_button),
174- negativeButtonText = getString(R .string.action_open_app_dialog_ignore_button)
174+ negativeButtonText = getString(R .string.action_open_app_dialog_ignore_button),
175175 ),
176176 )
177177
178178 if (response == DialogResponse .POSITIVE ) {
179179 showPopup(
180180 " app_action_permission_info" ,
181- PopupUi .OpenUrl (getString(R .string.url_action_guide))
181+ PopupUi .OpenUrl (getString(R .string.url_action_guide)),
182182 )
183183 return false
184-
185184 } else {
186185 return response != null
187186 }
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ class KeyEventRelayService : Service() {
169169
170170 private inner class ClientConnection (
171171 private val clientPackageName : String ,
172- val callback : IKeyEventRelayServiceCallback
172+ val callback : IKeyEventRelayServiceCallback ,
173173 ) : DeathRecipient {
174174 override fun binderDied () {
175175 Timber .d(" Client binder died: $clientPackageName " )
Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ class KeyEventRelayServiceWrapperImpl(
101101 // while there is no registered connection.
102102 }
103103 }
104-
105104}
106105
107106interface KeyEventRelayServiceWrapper {
You can’t perform that action at this time.
0 commit comments