Explorar o código

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

Marcin Krzyżanowski %!s(int64=10) %!d(string=hai) anos
pai
achega
7185e32ad5
Modificáronse 1 ficheiros con 0 adicións e 4 borrados
  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)