Skip to content

Commit d83f847

Browse files
cleanup
1 parent 5e462d2 commit d83f847

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/powersync/lib/src/streaming_sync.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class StreamingSyncImplementation {
5252
/// A unique identifier for this streaming sync implementation
5353
/// A good value is typically the DB file path which it will mutate when syncing.
5454
String? identifier = "unknown"})
55-
: syncMutex = Mutex(identifier: "sync-${identifier}"),
56-
crudMutex = Mutex(identifier: "crud-${identifier}") {
55+
: syncMutex = Mutex(identifier: "sync-$identifier"),
56+
crudMutex = Mutex(identifier: "crud-$identifier") {
5757
_client = client;
5858
statusStream = _statusStreamController.stream;
5959
}

0 commit comments

Comments
 (0)