File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/com/google/firebase/functions Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package com.google.firebase.functions {
3
3
4
4
public class FirebaseFunctions {
5
5
method @NonNull public com.google.firebase.functions.HttpsCallableReference getHttpsCallable(@NonNull String);
6
+ method @NonNull public com.google.firebase.functions.HttpsCallableReference getHttpsCallableFromUrl(@NonNull URL url);
6
7
method @NonNull public static com.google.firebase.functions.FirebaseFunctions getInstance(@NonNull com.google.firebase.FirebaseApp, @NonNull String);
7
8
method @NonNull public static com.google.firebase.functions.FirebaseFunctions getInstance(@NonNull com.google.firebase.FirebaseApp);
8
9
method @NonNull public static com.google.firebase.functions.FirebaseFunctions getInstance(@NonNull String);
Original file line number Diff line number Diff line change @@ -205,8 +205,8 @@ public HttpsCallableReference getHttpsCallable(@NonNull String name) {
205
205
}
206
206
207
207
@ NonNull
208
- public HttpsCallableReference getHttpsCallableFromUrl (@ NonNull String url ) throws MalformedURLException {
209
- return new HttpsCallableReference (this , new URL ( url ) );
208
+ public HttpsCallableReference getHttpsCallableFromUrl (@ NonNull URL url ) {
209
+ return new HttpsCallableReference (this , url );
210
210
}
211
211
212
212
/**
You can’t perform that action at this time.
0 commit comments