File tree 2 files changed +0
-24
lines changed
2 files changed +0
-24
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,7 @@ enum ProviderState {
11
11
DEGRADED ,
12
12
RECONNECTING ,
13
13
PLUGIN_ERROR ,
14
- <<<<<< < HEAD
15
14
MAINTENANCE ,
16
- ====== =
17
- MAINTENANCE
18
- >>>>>> > ba2a59e (chore: move code into the root directory (#32 ))
19
15
}
20
16
21
17
/// Provider configuration
@@ -122,11 +118,7 @@ class InMemoryProvider implements FeatureProvider {
122
118
final ProviderConfig _config;
123
119
124
120
InMemoryProvider (this ._flags, [ProviderConfig ? config])
125
- <<<<<< < HEAD
126
121
: _config = config ?? const ProviderConfig ();
127
- ====== =
128
- : _config = config ?? const ProviderConfig ();
129
- >>>>>> > ba2a59e (chore: move code into the root directory (#32 ))
130
122
131
123
@override
132
124
String get name => 'InMemoryProvider' ;
@@ -265,11 +257,4 @@ abstract class CommercialProvider implements FeatureProvider {
265
257
ProviderState get state => _state;
266
258
267
259
// HTTP request implementation template
268
- <<<<<< < HEAD
269
- ====== =
270
- Future <dynamic > _makeRequest (String path,
271
- {Map <String , dynamic >? params}) async {
272
- throw UnimplementedError ('_makeRequest must be implemented by child class' );
273
- }
274
- >>>>>> > ba2a59e (chore: move code into the root directory (#32 ))
275
260
}
Original file line number Diff line number Diff line change @@ -35,21 +35,12 @@ class TransactionContext {
35
35
/// Transaction context manager
36
36
class TransactionContextManager {
37
37
static final TransactionContextManager _instance =
38
- <<<<<< < HEAD
39
38
TransactionContextManager ._internal (Duration (minutes: 5 ));
40
- ====== =
41
- TransactionContextManager ._internal ();
42
- >>>>>> > ba2a59e (chore: move code into the root directory (#32 ))
43
39
final _contexts = < String , TransactionContext > {};
44
40
final _contextStack = < String > [];
45
41
final Duration _defaultTimeout;
46
42
47
- <<<<<< < HEAD
48
43
TransactionContextManager ._internal (this ._defaultTimeout);
49
- ====== =
50
- TransactionContextManager ._internal (
51
- [this ._defaultTimeout = const Duration (minutes: 30 )]);
52
- >>>>>> > ba2a59e (chore: move code into the root directory (#32 ))
53
44
54
45
factory TransactionContextManager () => _instance;
55
46
You can’t perform that action at this time.
0 commit comments