Skip to content

Commit ef4160c

Browse files
revert test change
1 parent a92930a commit ef4160c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/src/commonMain/kotlin/com/powersync/db/ActiveInstanceStore.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@ internal class ActiveDatabaseGroup(
8282
}
8383
}
8484

85-
public class ActiveDatabaseResource internal constructor(
86-
internal val group: ActiveDatabaseGroup,
85+
internal class ActiveDatabaseResource constructor(
86+
val group: ActiveDatabaseGroup,
8787
) {
88-
internal val disposed = AtomicBoolean(false)
88+
val disposed = AtomicBoolean(false)
8989

90-
internal fun dispose() {
90+
fun dispose() {
9191
if (disposed.compareAndSet(false, true)) {
9292
group.removeUsage()
9393
}

0 commit comments

Comments
 (0)