Skip to content

Commit 4096b0a

Browse files
committed
More changes
1 parent d355af2 commit 4096b0a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

firebase-perf/src/main/java/com/google/firebase/perf/session/PerfSession.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ public String sessionId() {
7979
return Objects.requireNonNull(sessionDetails).getSessionId();
8080
}
8181

82-
protected String getInternalSessionId() {
82+
@VisibleForTesting(otherwise = VisibleForTesting.PACKAGE_PRIVATE)
83+
public String getInternalSessionId() {
8384
return internalSessionId;
8485
}
8586

firebase-perf/src/main/java/com/google/firebase/perf/session/SessionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class SessionManager {
3939

4040
@SuppressLint("StaticFieldLeak")
4141
private static final SessionManager instance = new SessionManager();
42-
42+
4343
private final GaugeManager gaugeManager;
4444
private final AppStateMonitor appStateMonitor;
4545
private final Set<WeakReference<SessionAwareObject>> clients = new HashSet<>();

0 commit comments

Comments
 (0)