Skip to content

Commit 98cf808

Browse files
committed
Fix-up for copy-pasta (TimeZone)
1 parent c4f0968 commit 98cf808

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Foundation/TimeZone.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,7 @@ public struct TimeZone : Hashable, Equatable, ReferenceConvertible {
225225

226226
extension TimeZone : CustomStringConvertible, CustomDebugStringConvertible, CustomReflectable {
227227
private var _kindDescription : String {
228-
if (self == TimeZone.autoupdatingCurrent) {
229-
return "autoupdatingCurrent"
230-
} else if (self == TimeZone.current) {
228+
if (self == TimeZone.current) {
231229
return "current"
232230
} else {
233231
return "fixed"

0 commit comments

Comments
 (0)