File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ extension KafkaPollingSystem {
278
278
///
279
279
/// - Parameter continuation: The continuation that will be resumed once we are allowed to produce again.
280
280
/// After resuming the continuation, our poll loop will start running again.
281
- fileprivate mutating func suspendLoop( continuation: CheckedContinuation < Void , Never > ) {
281
+ mutating func suspendLoop( continuation: CheckedContinuation < Void , Never > ) {
282
282
switch self . state {
283
283
case . idle, . finished:
284
284
return
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public actor KafkaProducer {
80
80
81
81
/// A class that wraps a closure with a reference to that closure, allowing to change the underlying functionality
82
82
/// of `funcTofunc` after it has been passed.
83
- public class ClosureWrapper < Arg> {
83
+ private class ClosureWrapper < Arg> {
84
84
/// The wrapped closure.
85
85
var wrappedClosure : ( ( Arg ? ) -> Void ) ?
86
86
You can’t perform that action at this time.
0 commit comments