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 @@ -132,7 +132,7 @@ open class URLCache : NSObject {
132
132
private static var sharedCache : URLCache ?
133
133
134
134
private let syncQ = DispatchQueue ( label: " org.swift.URLCache.syncQ " )
135
- private var persistence : CachePersistence ?
135
+ private var persistence : _CachePersistence ?
136
136
137
137
/*!
138
138
@method sharedURLCache
@@ -202,7 +202,7 @@ open class URLCache : NSObject {
202
202
self . diskCapacity = diskCapacity
203
203
204
204
if let _path = path {
205
- self . persistence = CachePersistence ( path: _path)
205
+ self . persistence = _CachePersistence ( path: _path)
206
206
}
207
207
208
208
super. init ( )
@@ -301,7 +301,7 @@ extension URLCache {
301
301
public func removeCachedResponse( for dataTask: URLSessionDataTask ) { NSUnimplemented ( ) }
302
302
}
303
303
304
- fileprivate struct CachePersistence {
304
+ fileprivate struct _CachePersistence {
305
305
306
306
let path : String
307
307
You can’t perform that action at this time.
0 commit comments