Skip to content

TSCUtility: remove extraneous ) in dispatch queue ids (NFC) #240

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Sources/TSCUtility/FSWatch.swift
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ public final class Inotify {
private var wds: [Int32: AbsolutePath] = [:]

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

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

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

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

public init(
paths: [AbsolutePath],
Expand Down