@@ -67,7 +67,7 @@ public class URLResponse : NSObject, NSSecureCoding, NSCopying {
67
67
/// that the origin server or source reported the information
68
68
/// incorrectly or imprecisely. An attempt to guess the MIME type may
69
69
/// be made if the origin source did not report any such information.
70
- public private ( set) var mimeType : String ?
70
+ public fileprivate ( set) var mimeType : String ?
71
71
72
72
/// The expected content length of the receiver.
73
73
///
@@ -81,7 +81,7 @@ public class URLResponse : NSObject, NSSecureCoding, NSCopying {
81
81
/// The expected content length of the receiver, or `-1` if
82
82
/// there is no expectation that can be arrived at regarding expected
83
83
/// content length.
84
- public private ( set) var expectedContentLength : Int64
84
+ public fileprivate ( set) var expectedContentLength : Int64
85
85
86
86
/// The name of the text encoding of the receiver.
87
87
///
@@ -90,7 +90,7 @@ public class URLResponse : NSObject, NSSecureCoding, NSCopying {
90
90
/// URL load. Clients can inspect this string and convert it to an
91
91
/// NSStringEncoding or CFStringEncoding using the methods and
92
92
/// functions made available in the appropriate framework.
93
- public private ( set) var textEncodingName : String ?
93
+ public fileprivate ( set) var textEncodingName : String ?
94
94
95
95
/// A suggested filename if the resource were saved to disk.
96
96
///
@@ -104,7 +104,7 @@ public class URLResponse : NSObject, NSSecureCoding, NSCopying {
104
104
/// method appends the proper file extension based on the MIME type.
105
105
///
106
106
/// This method always returns a valid filename.
107
- public private ( set) var suggestedFilename : String ?
107
+ public fileprivate ( set) var suggestedFilename : String ?
108
108
}
109
109
110
110
/// A Response to an HTTP URL load.
0 commit comments