Skip to content

Commit

Permalink
[firebase_storage] Removed "i am working" print statements (firebase#…
Browse files Browse the repository at this point in the history
…1652)

Remove unnecessary print statements.
  • Loading branch information
creativecreatorormaybenot authored and kroikie committed Dec 16, 2019
1 parent 8832111 commit 6d22cdd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/firebase_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.1.1

* Removed unnecessary debug print statements ("i am working").

## 3.1.0

* Added error handling to `StorageFileDownloadTask` and added propagation of errors to the Future returned by the `writeToFile` method in `StorageReference`.
Expand Down
3 changes: 0 additions & 3 deletions packages/firebase_storage/lib/src/storage_reference.dart
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,6 @@ class StorageReference {

/// Retrieves metadata associated with an object at this [StorageReference].
Future<StorageMetadata> getMetadata() async {
print('i am working');
print(_pathComponents);
print('i am working');
return StorageMetadata._fromMap(await FirebaseStorage.channel
.invokeMapMethod<String, dynamic>(
"StorageReference#getMetadata", <String, String>{
Expand Down
2 changes: 1 addition & 1 deletion packages/firebase_storage/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: firebase_storage
description: Flutter plugin for Firebase Cloud Storage, a powerful, simple, and
cost-effective object storage service for Android and iOS.
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_storage
version: 3.1.0
version: 3.1.1

flutter:
plugin:
Expand Down

0 comments on commit 6d22cdd

Please sign in to comment.