aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Storage/Public
diff options
context:
space:
mode:
authorGravatar Sebastian Schmidt <mrschmidt@google.com>2018-04-13 14:37:28 -0700
committerGravatar GitHub <noreply@github.com>2018-04-13 14:37:28 -0700
commit4e01558661d74cb7eba3b6ba66d3ecc90720d5f6 (patch)
treef89ca0b8bd61c01b9dd70cbced72687672f5a653 /Firebase/Storage/Public
parent60d43d7b0980719beac21811da712f1cb4881308 (diff)
parentd7316f70dc4825e75cecd47740c0541248aa9641 (diff)
Merge pull request #1055 from firebase/mrschmidt-removedownloadurl
Removing FirebaseStorage.downloadURL
Diffstat (limited to 'Firebase/Storage/Public')
-rw-r--r--Firebase/Storage/Public/FIRStorageMetadata.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/Firebase/Storage/Public/FIRStorageMetadata.h b/Firebase/Storage/Public/FIRStorageMetadata.h
index 2e3cc13..63b8798 100644
--- a/Firebase/Storage/Public/FIRStorageMetadata.h
+++ b/Firebase/Storage/Public/FIRStorageMetadata.h
@@ -113,12 +113,6 @@ NS_SWIFT_NAME(StorageMetadata)
@property(strong, nonatomic, readonly, nullable) FIRStorageReference *storageReference;
/**
- * An array containing all download URLs available for the object.
- */
-@property(strong, nonatomic, readonly, nullable) NSArray<NSURL *> *downloadURLs __deprecated_msg(
- "Use `StorageReference.downloadURLWithCompletion()` to obtain a current download URL.");
-
-/**
* Creates an instanece of FIRStorageMetadata from the contents of a dictionary.
* @return An instance of FIRStorageMetadata that represents the contents of a dictionary.
*/
@@ -141,14 +135,6 @@ NS_SWIFT_NAME(StorageMetadata)
*/
@property(readonly, getter=isFolder) BOOL folder;
-/**
- * Retrieves a download URL for the given object, or nil if none exist.
- * Note that if there are many valid download tokens, this will always return the first
- * valid token created.
- */
-- (nullable NSURL *)downloadURL __deprecated_msg(
- "Use `StorageReference.downloadURLWithCompletion()` to obtain a current download URL.");
-
@end
NS_ASSUME_NONNULL_END