Remove trailing whitespace

This commit is contained in:
Khoa Pham
2018-04-04 10:06:21 +02:00
parent c3e595bf05
commit 71897cea7e
+2 -2
View File
@@ -45,7 +45,7 @@ public protocol StorageAware {
Clears all expired objects.
*/
func removeExpiredObjects() throws
/**
Check if an expired object by the given key.
- Parameter key: Unique key to identify the object.
@@ -66,7 +66,7 @@ public extension StorageAware {
return false
}
}
func isExpiredObject<T: Codable>(ofType type: T.Type, forKey key: String) throws -> Bool {
do {
let entry = try self.entry(ofType: type, forKey: key)