Skip to content

Commit 3f185ec

Browse files
committed
rewording
1 parent eebb083 commit 3f185ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public synchronized void onActivityStopped(Activity activity) {
174174
// no more activity in foreground, app goes to background.
175175
stopTime = clock.getTime();
176176
sendSessionLog(Constants.TraceNames.FOREGROUND_TRACE_NAME.toString(), resumeTime, stopTime);
177-
// order is important to transport _fs before triggering a sessionId change b/204362742
177+
// order is important to complete _fs before triggering a sessionId change b/204362742
178178
updateAppState(ApplicationProcessState.BACKGROUND);
179179
}
180180
}
@@ -198,7 +198,7 @@ public synchronized void onActivityResumed(Activity activity) {
198198
} else {
199199
// case 2: app switch from background to foreground.
200200
sendSessionLog(Constants.TraceNames.BACKGROUND_TRACE_NAME.toString(), stopTime, resumeTime);
201-
// order is important to transport _bs before triggering a sessionId change b/204362742
201+
// order is important to complete _bs before triggering a sessionId change b/204362742
202202
updateAppState(ApplicationProcessState.FOREGROUND);
203203
}
204204
} else {

0 commit comments

Comments
 (0)