@@ -848,16 +848,13 @@ public class HTTPClient {
848848 public var enableMultipath : Bool
849849
850850 /// 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 > ) ?
853852
854853 /// 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 > ) ?
857855
858856 /// 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 > ) ?
861858
862859 public init (
863860 tlsConfiguration: TLSConfiguration ? = nil ,
@@ -970,12 +967,9 @@ public class HTTPClient {
970967 proxy: Proxy ? = nil ,
971968 ignoreUncleanSSLShutdown: Bool = false ,
972969 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
979973 ) {
980974 self . init (
981975 tlsConfiguration: tlsConfiguration,
0 commit comments