From f52d9f66d0c3a2a18c38232997c386328136f60d Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Sun, 19 Jan 2020 12:37:38 +0100 Subject: [PATCH] Make public class public contrictible --- Sources/AsyncHTTPClient/Utils.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/AsyncHTTPClient/Utils.swift b/Sources/AsyncHTTPClient/Utils.swift index 5f7d4b1a5..12f921a06 100644 --- a/Sources/AsyncHTTPClient/Utils.swift +++ b/Sources/AsyncHTTPClient/Utils.swift @@ -32,7 +32,7 @@ public final class HTTPClientCopyingDelegate: HTTPClientResponseDelegate { let chunkHandler: (ByteBuffer) -> EventLoopFuture - init(chunkHandler: @escaping (ByteBuffer) -> EventLoopFuture) { + public init(chunkHandler: @escaping (ByteBuffer) -> EventLoopFuture) { self.chunkHandler = chunkHandler }