mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-03-30 14:12:09 +02:00
tidy up
This commit is contained in:
@@ -166,12 +166,10 @@ public struct MigrationChain: NilLiteralConvertible, StringLiteralConvertible, D
|
||||
var valid = true
|
||||
for version in elements {
|
||||
|
||||
if let lastVersion = lastVersion {
|
||||
|
||||
if let _ = versionTree.updateValue(version, forKey: lastVersion) {
|
||||
if let lastVersion = lastVersion,
|
||||
let _ = versionTree.updateValue(version, forKey: lastVersion) {
|
||||
|
||||
valid = false
|
||||
}
|
||||
}
|
||||
lastVersion = version
|
||||
}
|
||||
@@ -203,11 +201,11 @@ public struct MigrationChain: NilLiteralConvertible, StringLiteralConvertible, D
|
||||
|
||||
internal func nextVersionFrom(version: String) -> String? {
|
||||
|
||||
if let nextVersion = self.versionTree[version] where nextVersion != version {
|
||||
guard let nextVersion = self.versionTree[version] where nextVersion != version else {
|
||||
|
||||
return nextVersion
|
||||
return nil
|
||||
}
|
||||
return nil
|
||||
return nextVersion
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user