@@ -2,7 +2,6 @@ import 'dart:math';
2
2
3
3
import 'package:collection/collection.dart' ;
4
4
import 'package:meta/meta.dart' ;
5
- import '../database/powersync_database.dart' ;
6
5
7
6
import 'bucket_storage.dart' ;
8
7
import 'protocol.dart' ;
@@ -120,10 +119,8 @@ final class SyncStatus {
120
119
121
120
/// All sync streams currently being tracked in this subscription.
122
121
///
123
- /// This returns null when the sync stream is currently being opened and we
124
- /// don't have reliable information about all included streams yet (in that
125
- /// state, [PowerSyncDatabase.subscribedStreams] can still be used to
126
- /// resolve known subscriptions locally).
122
+ /// This returns null when the database is currently being opened and we
123
+ /// don't have reliable information about all included streams yet.
127
124
Iterable <SyncStreamStatus >? get activeSubscriptions {
128
125
return _internalSubscriptions? .map ((subscription) {
129
126
return SyncStreamStatus ._(subscription, downloadProgress);
@@ -221,7 +218,6 @@ final class SyncStreamStatus {
221
218
222
219
SyncSubscriptionDescription get subscription => _internal;
223
220
StreamPriority get priority => _internal.priority;
224
- bool get isDefault => _internal.isDefault;
225
221
226
222
SyncStreamStatus ._(this ._internal, SyncDownloadProgress ? progress)
227
223
: progress = progress? ._internal._forStream (_internal);
0 commit comments