File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,5 @@ export 'src/protocol.dart';
88export 'src/scope.dart' ;
99export 'src/sentry.dart' ;
1010export 'src/sentry_options.dart' ;
11- export 'src/sentry_options.dart' ;
1211export 'src/transport/transport.dart' ;
1312export 'src/version.dart' ;
Original file line number Diff line number Diff line change @@ -120,7 +120,8 @@ abstract class SentryClient {
120120 return event;
121121 }
122122
123- Event _applyScope ({@required Event event, @required Scope scope}) {
123+ SentryEvent _applyScope (
124+ {@required SentryEvent event, @required Scope scope}) {
124125 if (scope != null ) {
125126 // Merge the scope transaction.
126127 if (event.transaction == null ) {
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ import 'dart:convert';
33
44import 'package:http/http.dart' ;
55import 'package:meta/meta.dart' ;
6- import 'package:sentry/sentry.dart' ;
76import 'package:sentry/src/utils.dart' ;
87
98import '../protocol.dart' ;
9+ import '../sentry_options.dart' ;
1010import 'body_encoder_browser.dart' if (dart.library.io) 'body_encoder.dart' ;
1111
1212typedef BodyEncoder = List <int > Function (
@@ -17,9 +17,6 @@ typedef BodyEncoder = List<int> Function(
1717
1818typedef HeadersBuilder = Map <String , String > Function (String authHeader);
1919
20- /// Used to provide timestamp for logging.
21- typedef ClockProvider = DateTime Function ();
22-
2320/// A transport is in charge of sending the event to the Sentry server.
2421class Transport {
2522 final Client httpClient;
You can’t perform that action at this time.
0 commit comments