summaryrefslogtreecommitdiffhomepage
path: root/android/lib/ipc
diff options
context:
space:
mode:
authorDavid Göransson <david.goransson90@gmail.com>2023-09-11 15:59:09 +0200
committerDavid Göransson <david.goransson90@gmail.com>2023-09-12 11:22:16 +0200
commitd63db4ab40c71b07368f7778d8fb0f23392352e2 (patch)
treea9392bfc7a24f5fa6f595b9d35cfd8c97951d142 /android/lib/ipc
parentfa733200f25e9ef89f138f848af2b0be9eba2e2b (diff)
downloadmullvadvpn-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.kt2
-rw-r--r--android/lib/ipc/src/main/kotlin/net/mullvad/mullvadvpn/lib/ipc/Request.kt2
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")