File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change
1
+ # Unreleased
2
+ - [ removed] ** Breaking change** : Removed the following unused API,
3
+ ` StorageMetadata.storageReference ` .
4
+
1
5
# 11.13.0
2
6
- [ fixed] ` putFile ` now works in App Clips. Similarly to app extensions, background session
3
7
configurations are not used in App Clips (#14794 ).
Original file line number Diff line number Diff line change @@ -102,11 +102,6 @@ import Foundation
102
102
*/
103
103
@objc public let updated : Date ?
104
104
105
- /**
106
- * Never used API
107
- */
108
- @available ( * , deprecated) @objc public let storageReference : StorageReference ? = nil
109
-
110
105
/**
111
106
* Creates a Dictionary from the contents of the metadata.
112
107
* @return A Dictionary that represents the contents of the metadata.
Original file line number Diff line number Diff line change @@ -169,10 +169,6 @@ - (void)FIRStorageMetadataApis {
169
169
[metadata size ];
170
170
[metadata timeCreated ];
171
171
[metadata updated ];
172
- #pragma clang diagnostic push
173
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
174
- [metadata storageReference ];
175
- #pragma clang diagnostic pop
176
172
FIRStorageMetadata __unused *ref2 = [metadata initWithDictionary: @{}];
177
173
NSDictionary <NSString *, id > __unused *dict = [metadata dictionaryRepresentation ];
178
174
[metadata isFile ];
You can’t perform that action at this time.
0 commit comments