Skip to content

Commit edbbc6f

Browse files
committed
Remove a @nullable annotation and an unnecessary dependency
1 parent 791c68f commit edbbc6f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/impl/FeedbackSender.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
package com.google.firebase.appdistribution.impl;
1616

1717
import android.graphics.Bitmap;
18-
import androidx.annotation.NonNull;
1918
import com.google.android.gms.tasks.Task;
2019
import com.google.firebase.FirebaseApp;
2120

@@ -28,7 +27,7 @@ class FeedbackSender {
2827
this.testerApiClient = testerApiClient;
2928
}
3029

31-
@NonNull
30+
/** Get an instance of FeedbackSender. */
3231
static FeedbackSender getInstance() {
3332
return FirebaseApp.getInstance().get(FeedbackSender.class);
3433
}

firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/impl/FirebaseAppDistributionRegistrar.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public class FirebaseAppDistributionRegistrar implements ComponentRegistrar {
4646
Component.builder(FirebaseAppDistribution.class)
4747
.add(Dependency.required(FirebaseApp.class))
4848
.add(Dependency.requiredProvider(FirebaseInstallationsApi.class))
49-
.add(Dependency.required(FeedbackSender.class))
5049
.factory(this::buildFirebaseAppDistribution)
5150
// construct FirebaseAppDistribution instance on startup so we can register for
5251
// activity lifecycle callbacks before the API is called

0 commit comments

Comments
 (0)