Skip to content

Commit afd5235

Browse files
committedJun 23, 2020
The constructor of LocalFileSystemProvider and LocalFileSystemAuthentication explicitly declared as public.
1 parent 6b9f5df commit afd5235

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed
 

‎CloudAccess/LocalFileSystem/LocalFileSystemAuthentication.swift

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
import Foundation
1010
import Promises
1111
public class LocalFileSystemAuthentication: CloudAuthentication {
12+
public init() {}
13+
1214
public func authenticate(from _: UIViewController) -> Promise<Void> {
1315
return Promise(())
1416
}

‎CloudAccess/LocalFileSystem/LocalFileSystemProvider.swift

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ extension FileManager {
2727
public class LocalFileSystemProvider: CloudProvider {
2828
let fileManager = FileManager()
2929

30+
public init() {}
31+
3032
public func fetchItemMetadata(at remoteURL: URL) -> Promise<CloudItemMetadata> {
3133
precondition(remoteURL.isFileURL)
3234
let attributes: [FileAttributeKey: Any]

‎Podfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ SPEC CHECKSUMS:
3535

3636
PODFILE CHECKSUM: d1e4fe5054ad2ec1e130ada0d894d701cc584229
3737

38-
COCOAPODS: 1.9.3
38+
COCOAPODS: 1.9.1

0 commit comments

Comments
 (0)
Please sign in to comment.