Преглед изворни кода

Fix Swift 5 warning

With Swift 5 the bytes initializer is deprecated. The replacement is
backwards compatible
Keith Smiley пре 6 година
родитељ
комит
20e35a06a1
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Sources/CryptoSwift/Foundation/Data+Extension.swift

+ 1 - 1
Sources/CryptoSwift/Foundation/Data+Extension.swift

@@ -82,7 +82,7 @@ extension Data {
 
 extension Data {
     public init(hex: String) {
-        self.init(bytes: Array<UInt8>(hex: hex))
+        self.init(Array<UInt8>(hex: hex))
     }
 
     public var bytes: Array<UInt8> {