Skip to content

Commit

Permalink
Made cachePath(forComputedKey:) function open for finer manipulat…
Browse files Browse the repository at this point in the history
…ion of filename computation
  • Loading branch information
ceyhun-monument committed Nov 4, 2016
1 parent c362408 commit 7ba0d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/ImageCache.swift
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ open class ImageCache {
return cachePath(forComputedKey: computedKey)
}

fileprivate func cachePath(forComputedKey key: String) -> String {
open func cachePath(forComputedKey key: String) -> String {
let fileName = cacheFileName(forComputedKey: key)
return (diskCachePath as NSString).appendingPathComponent(fileName)
}
Expand Down

0 comments on commit 7ba0d48

Please sign in to comment.