We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b7ee30 commit b495398Copy full SHA for b495398
Foundation/NSLocale.swift
@@ -236,14 +236,12 @@ extension NSLocale {
236
}
237
238
239
-extension NSLocale.Key {
240
- public static func ==(_ lhs: NSLocale.Key, _ rhs: NSLocale.Key) -> Bool {
241
- return lhs.rawValue == rhs.rawValue
242
- }
+public func ==(_ lhs: NSLocale.Key, _ rhs: NSLocale.Key) -> Bool {
+ return lhs.rawValue == rhs.rawValue
+}
243
244
- public static func <(_ lhs: NSLocale.Key, _ rhs: NSLocale.Key) -> Bool {
245
- return lhs.rawValue < rhs.rawValue
246
+public func <(_ lhs: NSLocale.Key, _ rhs: NSLocale.Key) -> Bool {
+ return lhs.rawValue < rhs.rawValue
247
248
249
0 commit comments