From 619a0a648c348f84065f82f3dbdaa19f3d4ea0e8 Mon Sep 17 00:00:00 2001 From: mgrati Date: Tue, 20 Jun 2023 14:25:26 +0100 Subject: [PATCH] Clean : Fix indentation for task detekt --- .../ThreadLocalTransactionManager.kt | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/transactions/ThreadLocalTransactionManager.kt b/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/transactions/ThreadLocalTransactionManager.kt index 7efc999112..79921d5d5c 100644 --- a/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/transactions/ThreadLocalTransactionManager.kt +++ b/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/transactions/ThreadLocalTransactionManager.kt @@ -205,14 +205,16 @@ fun transaction( } finally { TransactionManager.resetCurrent(currentManager) } - } ?: inTopLevelTransaction(transactionIsolation, - repetitionAttempts, - readOnly, - db, - null, - minRepetitionDelay, - maxRepetitionDelay, - statement) + } ?: inTopLevelTransaction( + transactionIsolation, + repetitionAttempts, + readOnly, + db, + null, + minRepetitionDelay, + maxRepetitionDelay, + statement + ) } }