Skip to content

Commit 14a7342

Browse files
Linter fix
1 parent 96ab257 commit 14a7342

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

internal/PowerSyncKotlin/src/appleMain/kotlin/com/powersync/pool/SwiftSQLiteConnectionPool.kt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,13 @@ public fun openPowerSyncWithPool(
106106
schema = schema,
107107
identifier = identifier,
108108
logger = logger,
109-
dispatchStrategy = DispatchStrategy.Custom(
110-
object : DispatchFunction {
111-
override suspend fun <R> invoke(block: suspend () -> R): R {
112-
// We leave the dispatching up to the pool
113-
return block()
114-
}
115-
},
116-
),
109+
dispatchStrategy =
110+
DispatchStrategy.Custom(
111+
object : DispatchFunction {
112+
override suspend fun <R> invoke(block: suspend () -> R): R {
113+
// We leave the dispatching up to the pool
114+
return block()
115+
}
116+
},
117+
),
117118
)

0 commit comments

Comments
 (0)