Skip to content

Commit ef5e7e9

Browse files
beeme1mrABC2015
authored andcommitted
chore: update readme
Signed-off-by: Michael Beemer <[email protected]>
1 parent 14838f7 commit ef5e7e9

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

lib/feature_provider.dart

-15
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@ enum ProviderState {
1111
DEGRADED,
1212
RECONNECTING,
1313
PLUGIN_ERROR,
14-
<<<<<<< HEAD
1514
MAINTENANCE,
16-
=======
17-
MAINTENANCE
18-
>>>>>>> ba2a59e (chore: move code into the root directory (#32))
1915
}
2016

2117
/// Provider configuration
@@ -122,11 +118,7 @@ class InMemoryProvider implements FeatureProvider {
122118
final ProviderConfig _config;
123119

124120
InMemoryProvider(this._flags, [ProviderConfig? config])
125-
<<<<<<< HEAD
126121
: _config = config ?? const ProviderConfig();
127-
=======
128-
: _config = config ?? const ProviderConfig();
129-
>>>>>>> ba2a59e (chore: move code into the root directory (#32))
130122

131123
@override
132124
String get name => 'InMemoryProvider';
@@ -265,11 +257,4 @@ abstract class CommercialProvider implements FeatureProvider {
265257
ProviderState get state => _state;
266258

267259
// 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))
275260
}

lib/transaction_context.dart

-9
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,12 @@ class TransactionContext {
3535
/// Transaction context manager
3636
class TransactionContextManager {
3737
static final TransactionContextManager _instance =
38-
<<<<<<< HEAD
3938
TransactionContextManager._internal(Duration(minutes: 5));
40-
=======
41-
TransactionContextManager._internal();
42-
>>>>>>> ba2a59e (chore: move code into the root directory (#32))
4339
final _contexts = <String, TransactionContext>{};
4440
final _contextStack = <String>[];
4541
final Duration _defaultTimeout;
4642

47-
<<<<<<< HEAD
4843
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))
5344

5445
factory TransactionContextManager() => _instance;
5546

0 commit comments

Comments
 (0)