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"); }