Skip to content

Commit

Permalink
feedback: Add a missing explicit self
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjbeaumont committed Jul 11, 2024
1 parent 9bf65f6 commit dbba9e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/NIOCore/NIOScheduledCallback.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public struct NIOScheduledCallback: Sendable {
/// - NOTE: This property is for event loop implementors only.
@inlinable
public var customCallbackID: UInt64? {
guard case .custom(let id) = backing else { return nil }
guard case .custom(let id) = self.backing else { return nil }
return id
}
}
Expand Down

0 comments on commit dbba9e3

Please sign in to comment.