From 31040c0be69ca3509925e9b6061b66740e7aec26 Mon Sep 17 00:00:00 2001 From: egilmorez Date: Thu, 26 Dec 2024 11:11:46 -0800 Subject: [PATCH] Fix typo in FirebaseToken.java Fixing typo noted in b/181365473. --- src/main/java/com/google/firebase/auth/FirebaseToken.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/google/firebase/auth/FirebaseToken.java b/src/main/java/com/google/firebase/auth/FirebaseToken.java index 835fa41c9..6950bf16f 100644 --- a/src/main/java/com/google/firebase/auth/FirebaseToken.java +++ b/src/main/java/com/google/firebase/auth/FirebaseToken.java @@ -37,12 +37,12 @@ public final class FirebaseToken { this.claims = ImmutableMap.copyOf(claims); } - /** Returns the Uid for the this token. */ + /** Returns the Uid for this token. */ public String getUid() { return (String) claims.get("sub"); } - /** Returns the tenant ID for the this token. */ + /** Returns the tenant ID for this token. */ public String getTenantId() { Map firebase = (Map) claims.get("firebase"); if (firebase == null) { @@ -51,7 +51,7 @@ public String getTenantId() { return (String) firebase.get("tenant"); } - /** Returns the Issuer for the this token. */ + /** Returns the Issuer for this token. */ public String getIssuer() { return (String) claims.get("iss"); }