Skip to content

Commit e491210

Browse files
committed
Hide FirebaseAuth javadoc.
The issue is that even though the c.g.firebase.internal package is hidden with @hide javadoc comment, doclava does not "see" it when rendering the inherited methods section of the implementor. So we need an explicit @hide on the interface and all of its methods. Bug: 80714895 Change-Id: I54e0f5bfa96f535c2df404b9c7ffab591732abb6
1 parent 444aa79 commit e491210

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

firebase-common/src/main/java/com/google/firebase/internal/InternalTokenProvider.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
/**
99
* Provides a way for {@link com.google.firebase.FirebaseApp} to get an access token if there exists
1010
* a logged in user.
11+
*
12+
* @hide
1113
*/
1214
@KeepForSdk
1315
public interface InternalTokenProvider {
@@ -18,6 +20,7 @@ public interface InternalTokenProvider {
1820
* @param forceRefresh force refreshes the token. Should only be set to <code>true</code> if the
1921
* token is invalidated out of band.
2022
* @return a {@link Task}
23+
* @hide
2124
*/
2225
@KeepForSdk
2326
Task<GetTokenResult> getAccessToken(boolean forceRefresh);
@@ -27,6 +30,7 @@ public interface InternalTokenProvider {
2730
*
2831
* @return the String representation of the UID. Returns null if FirebaseAuth is not linked, or if
2932
* there is no currently signed-in user.
33+
* @hide
3034
*/
3135
@Nullable
3236
@KeepForSdk

0 commit comments

Comments
 (0)