Skip to content

Commit 702b8f5

Browse files
committed
TSCUtility: remove extraneous ) in dispatch queue ids (NFC)
This removes errant `)` in the dispatch queue names.
1 parent 83dce6e commit 702b8f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/TSCUtility/FSWatch.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,10 @@ public final class Inotify {
233233
private var wds: [Int32: AbsolutePath] = [:]
234234

235235
/// The queue on which we read the events.
236-
private let readQueue = DispatchQueue(label: "org.swift.swiftpm.\(Inotify.self).read)")
236+
private let readQueue = DispatchQueue(label: "org.swift.swiftpm.\(Inotify.self).read")
237237

238238
/// Callback queue for the delegate.
239-
private let callbacksQueue = DispatchQueue(label: "org.swift.swiftpm.\(Inotify.self).callback)")
239+
private let callbacksQueue = DispatchQueue(label: "org.swift.swiftpm.\(Inotify.self).callback")
240240

241241
/// Condition for handling event reporting.
242242
private var reportCondition = Condition()
@@ -625,7 +625,7 @@ public final class FSEventStream {
625625
private var runLoop: CFRunLoop?
626626

627627
/// Callback queue for the delegate.
628-
fileprivate let callbacksQueue = DispatchQueue(label: "org.swift.swiftpm.\(FSEventStream.self).callback)")
628+
fileprivate let callbacksQueue = DispatchQueue(label: "org.swift.swiftpm.\(FSEventStream.self).callback")
629629

630630
public init(
631631
paths: [AbsolutePath],

0 commit comments

Comments
 (0)