File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ open class URLCache : NSObject {
126
126
private static var sharedCache : URLCache ?
127
127
128
128
private let syncQ = DispatchQueue ( label: " org.swift.URLCache.syncQ " )
129
- private var persistence : CachePersistence ?
129
+ private var persistence : _CachePersistence ?
130
130
131
131
/*!
132
132
@method sharedURLCache
@@ -196,7 +196,7 @@ open class URLCache : NSObject {
196
196
self . diskCapacity = diskCapacity
197
197
198
198
if let _path = path {
199
- self . persistence = CachePersistence ( path: _path)
199
+ self . persistence = _CachePersistence ( path: _path)
200
200
}
201
201
202
202
super. init ( )
@@ -295,7 +295,7 @@ extension URLCache {
295
295
public func removeCachedResponse( for dataTask: URLSessionDataTask ) { NSUnimplemented ( ) }
296
296
}
297
297
298
- fileprivate struct CachePersistence {
298
+ fileprivate struct _CachePersistence {
299
299
300
300
let path : String
301
301
You can’t perform that action at this time.
0 commit comments