소스 검색

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> {