File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/com/google/firebase/auth Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ public final class FirebaseToken {
37
37
this .claims = ImmutableMap .copyOf (claims );
38
38
}
39
39
40
- /** Returns the Uid for the this token. */
40
+ /** Returns the Uid for this token. */
41
41
public String getUid () {
42
42
return (String ) claims .get ("sub" );
43
43
}
44
44
45
- /** Returns the tenant ID for the this token. */
45
+ /** Returns the tenant ID for this token. */
46
46
public String getTenantId () {
47
47
Map <String , Object > firebase = (Map <String , Object >) claims .get ("firebase" );
48
48
if (firebase == null ) {
@@ -51,7 +51,7 @@ public String getTenantId() {
51
51
return (String ) firebase .get ("tenant" );
52
52
}
53
53
54
- /** Returns the Issuer for the this token. */
54
+ /** Returns the Issuer for this token. */
55
55
public String getIssuer () {
56
56
return (String ) claims .get ("iss" );
57
57
}
You can’t perform that action at this time.
0 commit comments