| Index: lib/src/implementation.dart
|
| diff --git a/lib/src/implementation.dart b/lib/src/implementation.dart
|
| index 687a0f35f9795c9bd44838efde1ed981b653c7ff..51d8b9c3ca2af5a9462ff97d95cd30303f464edc 100644
|
| --- a/lib/src/implementation.dart
|
| +++ b/lib/src/implementation.dart
|
| @@ -17,18 +17,15 @@ import 'package:smoke/smoke.dart';
|
|
|
| /// Implementation of [ObjectAccessorService] in use, initialized lazily so it
|
| /// can be replaced at deployment time with an efficient alternative.
|
| -ObjectAccessorService objectAccessor =
|
| - new ReflectiveObjectAccessorService();
|
| +ObjectAccessorService objectAccessor = new ReflectiveObjectAccessorService();
|
|
|
| /// Implementation of [TypeInspectorService] in use, initialized lazily so it
|
| /// can be replaced at deployment time with an efficient alternative.
|
| -TypeInspectorService typeInspector =
|
| - new ReflectiveTypeInspectorService();
|
| +TypeInspectorService typeInspector = new ReflectiveTypeInspectorService();
|
|
|
| /// Implementation of [SymbolConverterService] in use, initialized lazily so it
|
| /// can be replaced at deployment time with an efficient alternative.
|
| -SymbolConverterService symbolConverter =
|
| - new ReflectiveSymbolConverterService();
|
| +SymbolConverterService symbolConverter = new ReflectiveSymbolConverterService();
|
|
|
| throwNotConfiguredError() {
|
| throw new Exception('The "smoke" library has not been configured. '
|
|
|