Skip to content

Commit

Permalink
fix: Clean up println
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-zatsepin committed Nov 21, 2024
1 parent ec6b9d4 commit 06adf58
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import jetbrains.exodus.entitystore.orientdb.iterate.OEntityOfTypeIterable
import jetbrains.exodus.entitystore.orientdb.iterate.link.*
import jetbrains.exodus.entitystore.orientdb.iterate.property.*
import jetbrains.exodus.entitystore.orientdb.query.OQueryCancellingPolicy
import java.sql.ResultSet

internal typealias TransactionEventHandler = (ODatabaseSession, OStoreTransaction) -> Unit

Expand Down Expand Up @@ -198,7 +197,6 @@ class OStoreTransactionImpl(

private fun cleanUpTxIfNeeded() {
if (session.status == ODatabaseSession.STATUS.OPEN && session.activeTxCount() == 0) {
println("Closing ${resultSets.size} result sets")
resultSets.forEach(OResultSet::close)
resultSets.clear()
onFinished(session, this)
Expand Down

0 comments on commit 06adf58

Please sign in to comment.