Skip to content

Commit

Permalink
change signature
Browse files Browse the repository at this point in the history
  • Loading branch information
morganchen12 committed Apr 7, 2023
1 parent 1c76675 commit 2a9f61a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FirebaseStorage/Sources/Storage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import FirebaseAuthInterop
* Instances of Storage are long-lived, so calling this method multiple times
* will return the same instance.
*/
@objc(storage) open class func storage() -> Storage {
@objc(storage:) open class func storage(_ ignored: Any? = nil) -> Storage {
return storage(app: FirebaseApp.app()!)
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/docdiff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ recursive_unminify_json() {
pushd "$target_dir";
find . -name "*.json" -print0 | while read -d $'\0' file
do
python3 -m json.tool "$file" "$file";
python3 -m json.tool --sort-keys "$file" "$file";
done
popd;
}
Expand Down

0 comments on commit 2a9f61a

Please sign in to comment.