Ver Fonte

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

Marcin Krzyżanowski há 10 anos atrás
pai
commit
7185e32ad5
1 ficheiros alterados com 0 adições e 4 exclusões
  1. 0 4
      CryptoSwift/NSDataExtension.swift

+ 0 - 4
CryptoSwift/NSDataExtension.swift

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