Skip to content

Commit

Permalink
Merge pull request #127 from mike-n-jordan/fix_detekt
Browse files Browse the repository at this point in the history
Fix detekt
  • Loading branch information
mike-n-jordan authored Oct 26, 2023
2 parents 5598c32 + d450221 commit 16a63b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
package com.bumble.livemosaic.participant

actual fun prepareTimeZones() {
}
actual fun prepareTimeZones() = Unit
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
package com.bumble.livemosaic.participant

actual fun prepareTimeZones() {
}
actual fun prepareTimeZones() = Unit
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package com.bumble.livemosaic.participant

actual fun prepareTimeZones() {
jsJodaTz
}

@JsModule("@js-joda/timezone")
@JsNonModule
external object JsJodaTimeZoneModule

private val jsJodaTz = JsJodaTimeZoneModule
actual fun prepareTimeZones() {
jsJodaTz
}

0 comments on commit 16a63b1

Please sign in to comment.