Skip to content

Commit 6548e50

Browse files
committed
add a missed interface referenced across NSData/Data
1 parent c6148cf commit 6548e50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Foundation/NSData.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ open class NSData : NSObject, NSCopying, NSMutableCopying, NSSecureCoding {
340340
return NSMutableData(bytes: UnsafeMutableRawPointer(mutating: bytes), length: length, copy: true, deallocator: nil)
341341
}
342342

343-
private func byteDescription(limit: Int? = nil) -> String {
343+
internal func byteDescription(limit: Int? = nil) -> String {
344344
var s = ""
345345
var i = 0
346346
while i < self.length {

0 commit comments

Comments
 (0)