Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions FirebaseStorage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Unreleased
- [removed] **Breaking change**: Removed the following unused API,
`StorageMetadata.storageReference`.

# 11.13.0
- [fixed] `putFile` now works in App Clips. Similarly to app extensions, background session
configurations are not used in App Clips (#14794).
Expand Down
5 changes: 0 additions & 5 deletions FirebaseStorage/Sources/StorageMetadata.swift
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,6 @@ import Foundation
*/
@objc public let updated: Date?

/**
* Never used API
*/
@available(*, deprecated) @objc public let storageReference: StorageReference? = nil

/**
* Creates a Dictionary from the contents of the metadata.
* @return A Dictionary that represents the contents of the metadata.
Expand Down
4 changes: 0 additions & 4 deletions FirebaseStorage/Tests/ObjCIntegration/ObjCAPITests.m
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,6 @@ - (void)FIRStorageMetadataApis {
[metadata size];
[metadata timeCreated];
[metadata updated];
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
[metadata storageReference];
#pragma clang diagnostic pop
FIRStorageMetadata __unused *ref2 = [metadata initWithDictionary:@{}];
NSDictionary<NSString *, id> __unused *dict = [metadata dictionaryRepresentation];
[metadata isFile];
Expand Down
Loading