@@ -848,16 +848,13 @@ public class HTTPClient {
848
848
public var enableMultipath : Bool
849
849
850
850
/// A method with access to the HTTP/1 connection channel that is called when creating the connection.
851
- public var http1_1ConnectionDebugInitializer :
852
- ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ?
851
+ public var http1_1ConnectionDebugInitializer : ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ?
853
852
854
853
/// A method with access to the HTTP/2 connection channel that is called when creating the connection.
855
- public var http2ConnectionDebugInitializer :
856
- ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ?
854
+ public var http2ConnectionDebugInitializer : ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ?
857
855
858
856
/// A method with access to the HTTP/2 stream channel that is called when creating the stream.
859
- public var http2StreamChannelDebugInitializer :
860
- ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ?
857
+ public var http2StreamChannelDebugInitializer : ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ?
861
858
862
859
public init (
863
860
tlsConfiguration: TLSConfiguration ? = nil ,
@@ -970,12 +967,9 @@ public class HTTPClient {
970
967
proxy: Proxy ? = nil ,
971
968
ignoreUncleanSSLShutdown: Bool = false ,
972
969
decompression: Decompression = . disabled,
973
- http1_1ConnectionDebugInitializer:
974
- ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ? = nil ,
975
- http2ConnectionDebugInitializer:
976
- ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ? = nil ,
977
- http2StreamChannelDebugInitializer:
978
- ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ? = nil
970
+ http1_1ConnectionDebugInitializer: ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ? = nil ,
971
+ http2ConnectionDebugInitializer: ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ? = nil ,
972
+ http2StreamChannelDebugInitializer: ( @Sendable ( Channel ) -> EventLoopFuture < Void > ) ? = nil
979
973
) {
980
974
self . init (
981
975
tlsConfiguration: tlsConfiguration,
0 commit comments