From 132f026c7508e35b825ba1842c16cb6bd53bf303 Mon Sep 17 00:00:00 2001 From: Ehren Kret Date: Fri, 26 Aug 2022 16:51:10 -0500 Subject: [PATCH] Improve readability of event code --- event-logger/src/main/kotlin/events.kt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/event-logger/src/main/kotlin/events.kt b/event-logger/src/main/kotlin/events.kt index b47a29391..2f0d0d564 100644 --- a/event-logger/src/main/kotlin/events.kt +++ b/event-logger/src/main/kotlin/events.kt @@ -11,4 +11,12 @@ import kotlinx.serialization.Serializable sealed interface Event @Serializable -data class RemoteConfigSetEvent(val token: String, val name: String, val percentage: Int, val defaultValue: String? = null, val value: String? = null, val hashKey: String? = null, val uuids: Collection = Collections.emptyList()) : Event +data class RemoteConfigSetEvent( + val token: String, + val name: String, + val percentage: Int, + val defaultValue: String? = null, + val value: String? = null, + val hashKey: String? = null, + val uuids: Collection = Collections.emptyList() +) : Event