Skip to content

Commit b1fe81e

Browse files
authored
Merge pull request #221 from yshrkt/issue_220
Issue #220 Changes the access control of CallbackQueue.execute()
2 parents 6fb67a5 + 9930687 commit b1fe81e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/APIKit/CallbackQueue.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public enum CallbackQueue {
1414
/// Dispatches callback closure on associated dispatch queue.
1515
case dispatchQueue(DispatchQueue)
1616

17-
internal func execute(closure: @escaping () -> Void) {
17+
public func execute(closure: @escaping () -> Void) {
1818
switch self {
1919
case .main:
2020
DispatchQueue.main.async {

0 commit comments

Comments
 (0)