Skip to content

Commit d6d9b86

Browse files
authored
Fix typo in FirebaseToken.java (#1051)
Fixing typo noted in b/181365473.
1 parent afea3c3 commit d6d9b86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/google/firebase/auth/FirebaseToken.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ public final class FirebaseToken {
3737
this.claims = ImmutableMap.copyOf(claims);
3838
}
3939

40-
/** Returns the Uid for the this token. */
40+
/** Returns the Uid for this token. */
4141
public String getUid() {
4242
return (String) claims.get("sub");
4343
}
4444

45-
/** Returns the tenant ID for the this token. */
45+
/** Returns the tenant ID for this token. */
4646
public String getTenantId() {
4747
Map<String, Object> firebase = (Map<String, Object>) claims.get("firebase");
4848
if (firebase == null) {
@@ -51,7 +51,7 @@ public String getTenantId() {
5151
return (String) firebase.get("tenant");
5252
}
5353

54-
/** Returns the Issuer for the this token. */
54+
/** Returns the Issuer for this token. */
5555
public String getIssuer() {
5656
return (String) claims.get("iss");
5757
}

0 commit comments

Comments
 (0)