summaryrefslogtreecommitdiffhomepage
path: root/android/lib
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2023-03-22 11:10:21 +0100
committerAlbin <albin@mullvad.net>2023-03-22 11:10:21 +0100
commitabcb52e1a215877e13a6924a2357672acf9f4cf7 (patch)
tree0a172dacad334066be40ea1239691ed963139dac /android/lib
parent98f30834fc890e0934bcc96e2822b5273df2befe (diff)
parent68c356e5afa2165cadef86d43966e51d9203102c (diff)
downloadmullvadvpn-abcb52e1a215877e13a6924a2357672acf9f4cf7.tar.xz
mullvadvpn-abcb52e1a215877e13a6924a2357672acf9f4cf7.zip
Merge branch 'replace-ktlint-with-ktfmt-droid-8'
Diffstat (limited to 'android/lib')
-rw-r--r--android/lib/endpoint/src/debug/kotlin/net/mullvad/mullvadvpn/lib/endpoint/CustomApiEndpointConfiguration.kt4
1 files changed, 1 insertions, 3 deletions
diff --git a/android/lib/endpoint/src/debug/kotlin/net/mullvad/mullvadvpn/lib/endpoint/CustomApiEndpointConfiguration.kt b/android/lib/endpoint/src/debug/kotlin/net/mullvad/mullvadvpn/lib/endpoint/CustomApiEndpointConfiguration.kt
index b3a00c809c..5fb8db5fe1 100644
--- a/android/lib/endpoint/src/debug/kotlin/net/mullvad/mullvadvpn/lib/endpoint/CustomApiEndpointConfiguration.kt
+++ b/android/lib/endpoint/src/debug/kotlin/net/mullvad/mullvadvpn/lib/endpoint/CustomApiEndpointConfiguration.kt
@@ -3,8 +3,6 @@ package net.mullvad.mullvadvpn.lib.endpoint
import kotlinx.parcelize.Parcelize
@Parcelize
-data class CustomApiEndpointConfiguration(
- val apiEndpoint: ApiEndpoint
-) : ApiEndpointConfiguration {
+data class CustomApiEndpointConfiguration(val apiEndpoint: ApiEndpoint) : ApiEndpointConfiguration {
override fun apiEndpoint() = apiEndpoint
}