File tree Expand file tree Collapse file tree 1 file changed +20
-19
lines changed
firebase-crashlytics/src/main/java/com/google/firebase/crashlytics Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -180,25 +180,26 @@ public Void call() throws Exception {
180
180
});
181
181
182
182
// TODO(mrober): Replace with a real session implementation.
183
- firebaseSessions .register (new SessionSubscriber () {
184
- @ Override
185
- public void onSessionChanged (@ NonNull SessionDetails sessionDetails ) {
186
- Logger .getLogger ().d ("onSessionChanged: " + sessionDetails );
187
- // TODO(mrober): Set new field in report and remove this.
188
- core .setInternalKey ("sessionId" , sessionDetails .getSessionId ());
189
- }
190
-
191
- @ Override
192
- public boolean isDataCollectionEnabled () {
193
- return arbiter .isAutomaticDataCollectionEnabled ();
194
- }
195
-
196
- @ NonNull
197
- @ Override
198
- public SessionSubscriber .Name getSessionSubscriberName () {
199
- return SessionSubscriber .Name .CRASHLYTICS ;
200
- }
201
- });
183
+ firebaseSessions .register (
184
+ new SessionSubscriber () {
185
+ @ Override
186
+ public void onSessionChanged (@ NonNull SessionDetails sessionDetails ) {
187
+ Logger .getLogger ().d ("onSessionChanged: " + sessionDetails );
188
+ // TODO(mrober): Set new field in report and remove this.
189
+ core .setInternalKey ("sessionId" , sessionDetails .getSessionId ());
190
+ }
191
+
192
+ @ Override
193
+ public boolean isDataCollectionEnabled () {
194
+ return arbiter .isAutomaticDataCollectionEnabled ();
195
+ }
196
+
197
+ @ NonNull
198
+ @ Override
199
+ public SessionSubscriber .Name getSessionSubscriberName () {
200
+ return SessionSubscriber .Name .CRASHLYTICS ;
201
+ }
202
+ });
202
203
203
204
return new FirebaseCrashlytics (core );
204
205
}
You can’t perform that action at this time.
0 commit comments