From acc8df7cd3d080cda6dd4d78ad24ab085d12e5ee Mon Sep 17 00:00:00 2001 From: Bruno Guidolim Date: Tue, 7 Jan 2020 16:20:03 +0100 Subject: [PATCH] Changes access level for "setProgress()" function --- Sources/Then/Promise+Progress.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Then/Promise+Progress.swift b/Sources/Then/Promise+Progress.swift index 32e241f7002..cdf46af4d30 100644 --- a/Sources/Then/Promise+Progress.swift +++ b/Sources/Then/Promise+Progress.swift @@ -25,7 +25,7 @@ public extension Promise { return p } - internal func setProgress(_ value: Float) { + func setProgress(_ value: Float) { updateState(PromiseState.pending(progress: value)) } }