Skip to content

Commit 31ed668

Browse files
committed
Remove @Body annotation. Retrofit impl shouldn't be expose here.
1 parent dcf641d commit 31ed668

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

firebase-auth-rest/core/src/main/java/com/anotherdev/firebase/auth/FirebaseAuth.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import io.reactivex.rxjava3.annotations.CheckReturnValue;
1212
import io.reactivex.rxjava3.core.Observable;
1313
import io.reactivex.rxjava3.core.Single;
14-
import retrofit2.http.Body;
1514

1615
public interface FirebaseAuth {
1716

@@ -58,7 +57,7 @@ public interface FirebaseAuth {
5857

5958
@NonNull
6059
@CheckReturnValue
61-
Single<SendPasswordResetEmailResponse> sendPasswordResetEmail(@Body SendPasswordResetEmailRequest request);
60+
Single<SendPasswordResetEmailResponse> sendPasswordResetEmail(SendPasswordResetEmailRequest request);
6261

6362
void signOut();
6463
}

0 commit comments

Comments
 (0)