From d5aa3a1bee2eb3216178e2539da90286d2ccab55 Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski <758033+krzyzanowskim@users.noreply.github.com> Date: Sun, 19 Jan 2020 22:26:30 +0100 Subject: [PATCH] Make public class public contrictible (#154) --- 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 5f7d4b1..12f921a 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 }