Skip to content

Commit 4231f58

Browse files
authored
Fix perf's javadoc. (#3182)
1 parent 42542ba commit 4231f58

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

firebase-perf/src/main/java/com/google/firebase/perf/application/AppStateUpdateHandler.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ protected AppStateUpdateHandler(@NonNull AppStateMonitor appStateMonitor) {
4545
appStateCallback = new WeakReference<AppStateCallback>(this);
4646
}
4747

48+
/** @hide */
4849
protected void registerForAppState() {
4950
if (isRegisteredForAppState) {
5051
return;
@@ -54,6 +55,7 @@ protected void registerForAppState() {
5455
isRegisteredForAppState = true;
5556
}
5657

58+
/** @hide */
5759
protected void unregisterForAppState() {
5860
if (!isRegisteredForAppState) {
5961
return;
@@ -62,6 +64,7 @@ protected void unregisterForAppState() {
6264
isRegisteredForAppState = false;
6365
}
6466

67+
/** @hide */
6568
protected void incrementTsnsCount(int count) {
6669
appStateMonitor.incrementTsnsCount(count);
6770
}

0 commit comments

Comments
 (0)