소스 검색

Remove NSData.hexString property, use toHexString() due to private property of that name. #105

Marcin Krzyżanowski 10 년 전
부모
커밋
7185e32ad5
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 4
      CryptoSwift/NSDataExtension.swift

+ 0 - 4
CryptoSwift/NSDataExtension.swift

@@ -84,10 +84,6 @@ extension NSData {
 
 extension NSData {
     
-    public var hexString: String {
-        return self.toHexString()
-    }
-
     func toHexString() -> String {
         let count = self.length / sizeof(UInt8)
         var bytesArray = [UInt8](count: count, repeatedValue: 0)