Skip to content

Commit c25f0dc

Browse files
committed
Make retrieveStoredAppCheckTokenInBackground private instead of package-private.
1 parent a5829d2 commit c25f0dc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

appcheck/firebase-appcheck/src/main/java/com/google/firebase/appcheck/internal/DefaultFirebaseAppCheck.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,7 @@ public DefaultFirebaseAppCheck(
8686
this.clock = new Clock.DefaultClock();
8787
}
8888

89-
@VisibleForTesting
90-
@NonNull
91-
Task<Void> retrieveStoredAppCheckTokenInBackground(@NonNull ExecutorService executor) {
89+
private Task<Void> retrieveStoredAppCheckTokenInBackground(@NonNull ExecutorService executor) {
9290
TaskCompletionSource<Void> taskCompletionSource = new TaskCompletionSource<>();
9391
executor.execute(
9492
() -> {

0 commit comments

Comments
 (0)