Skip to content

Commit cce7c6f

Browse files
committed
Use private instead of internal for these vars
1 parent 071de50 commit cce7c6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Foundation/NSURLCredential.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public enum NSURLCredentialPersistence : UInt {
3131
@discussion This class is an immutable object representing an authentication credential. The actual type of the credential is determined by the constructor called in the categories declared below.
3232
*/
3333
public class NSURLCredential : NSObject, NSSecureCoding, NSCopying {
34-
internal var _user : String
35-
internal var _password : String
36-
internal var _persistence : NSURLCredentialPersistence
34+
private var _user : String
35+
private var _password : String
36+
private var _persistence : NSURLCredentialPersistence
3737

3838
/*!
3939
@method initWithUser:password:persistence:

0 commit comments

Comments
 (0)