Browse Source

Changed access level to additional Array initializer from public to internal.

Grzegorz Nowicki 6 years ago
parent
commit
9721737103
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/CryptoSwift/Array+Extension.swift

+ 1 - 1
Sources/CryptoSwift/Array+Extension.swift

@@ -14,7 +14,7 @@
 //
 
 extension Array {
-    public init(reserveCapacity: Int) {
+    init(reserveCapacity: Int) {
         self = Array<Element>()
         self.reserveCapacity(reserveCapacity)
     }