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 {
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 }
You can’t perform that action at this time.
0 commit comments