Skip to content

Commit 92a59a8

Browse files
committed
.
1 parent d21b915 commit 92a59a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auth/src/main/java/com/google/firebase/quickstart/AuthSnippets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public static void verifyIdTokenCheckRevoked(String idToken) throws InterruptedE
233233
public static void revokeIdTokens(String idToken) throws InterruptedException, ExecutionException {
234234
String uid="someUid";
235235
// [START revoke_tokens]
236-
FirebaseToken decodedToken = FirebaseAuth.getInstance().revokeRefreshTokensAsync(uid).get();
236+
FirebaseAuth.getInstance().revokeRefreshTokensAsync(uid).get();
237237
UserRecord user = FirebaseAuth.getInstance().getUserAsync(uid).get();
238238
// Convert to seconds as the auth_time in the token claims is in seconds too.
239239
long revocationSecond = user.getTokensValidAfterTimestamp() / 1000;

0 commit comments

Comments
 (0)