File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Sources/SwiftDriver/IncrementalCompilation Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,8 @@ public struct BuildRecord {
41
41
private enum SectionName : String , CaseIterable {
42
42
case swiftVersion = " version "
43
43
case argsHash = " options "
44
- // Implement this for a smoother transition
45
- case legacyBuildStartTime = " build_time "
46
- case buildStartTime = " build_start_time "
44
+ // Keep "build_time" for smoother upgrades/downgrades
45
+ case buildStartTime = " build_time "
47
46
case buildEndTime = " build_end_time "
48
47
case inputInfos = " inputs "
49
48
@@ -89,8 +88,7 @@ public extension BuildRecord {
89
88
return nil
90
89
}
91
90
argsHash = s
92
- case SectionName . buildStartTime. serializedName,
93
- SectionName . legacyBuildStartTime. serializedName:
91
+ case SectionName . buildStartTime. serializedName:
94
92
guard let d = Self . decodeDate ( value,
95
93
forInputInfo: false ,
96
94
failedToReadOutOfDateMap)
You can’t perform that action at this time.
0 commit comments