Skip to content

Commit 6a0bb72

Browse files
committed
Refactoring
1 parent 03421f8 commit 6a0bb72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Atoms/Core/SubscriberState.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import Foundation
33
@MainActor
44
internal final class SubscriberState {
55
let token = SubscriberKey.Token()
6-
var subscribing = LockSendable(Set<AtomKey>())
7-
var unsubscribe = LockSendable<((Set<AtomKey>) -> Void)?>(nil)
6+
let subscribing = LockSendable(Set<AtomKey>())
7+
let unsubscribe = LockSendable<((Set<AtomKey>) -> Void)?>(nil)
88

99
// TODO: Use isolated synchronous deinit once it's available.
1010
// 0371-isolated-synchronous-deinit

0 commit comments

Comments
 (0)