We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a92930a commit ef4160cCopy full SHA for ef4160c
core/src/commonMain/kotlin/com/powersync/db/ActiveInstanceStore.kt
@@ -82,12 +82,12 @@ internal class ActiveDatabaseGroup(
82
}
83
84
85
-public class ActiveDatabaseResource internal constructor(
86
- internal val group: ActiveDatabaseGroup,
+internal class ActiveDatabaseResource constructor(
+ val group: ActiveDatabaseGroup,
87
) {
88
- internal val disposed = AtomicBoolean(false)
+ val disposed = AtomicBoolean(false)
89
90
- internal fun dispose() {
+ fun dispose() {
91
if (disposed.compareAndSet(false, true)) {
92
group.removeUsage()
93
0 commit comments