diff options
| author | David Göransson <david.goransson90@gmail.com> | 2023-09-11 15:59:09 +0200 |
|---|---|---|
| committer | David Göransson <david.goransson90@gmail.com> | 2023-09-12 11:22:16 +0200 |
| commit | d63db4ab40c71b07368f7778d8fb0f23392352e2 (patch) | |
| tree | a9392bfc7a24f5fa6f595b9d35cfd8c97951d142 /android/lib/ipc | |
| parent | fa733200f25e9ef89f138f848af2b0be9eba2e2b (diff) | |
| download | mullvadvpn-d63db4ab40c71b07368f7778d8fb0f23392352e2.tar.xz mullvadvpn-d63db4ab40c71b07368f7778d8fb0f23392352e2.zip | |
Perform AS Code Cleanup
Diffstat (limited to 'android/lib/ipc')
| -rw-r--r-- | android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Event.kt | 2 | ||||
| -rw-r--r-- | android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Request.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Event.kt b/android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Event.kt index 9ce1ccc698..c5ede20327 100644 --- a/android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Event.kt +++ b/android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Event.kt @@ -18,7 +18,7 @@ import net.mullvad.mullvadvpn.model.VoucherSubmissionResult // Events that can be sent from the service sealed class Event : Message.EventMessage() { - protected override val messageKey = MESSAGE_KEY + override val messageKey = MESSAGE_KEY @Parcelize data class AccountCreationEvent(val result: AccountCreationResult) : Event() diff --git a/android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Request.kt b/android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Request.kt index ad91632cbf..2a8636fa95 100644 --- a/android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Request.kt +++ b/android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Request.kt @@ -12,7 +12,7 @@ import net.mullvad.mullvadvpn.model.WireguardConstraints // Requests that the service can handle sealed class Request : Message.RequestMessage() { - protected override val messageKey = MESSAGE_KEY + override val messageKey = MESSAGE_KEY @Parcelize @Deprecated("Use SetDnsOptions") |
