| Index: runtime/observatory/lib/src/repositories/isolate.dart
|
| diff --git a/runtime/observatory/lib/src/repositories/isolate.dart b/runtime/observatory/lib/src/repositories/isolate.dart
|
| index 35e77df3c2d4d92ec753fe437092f7294d3d5f9b..9294c7d40461a4297a9cea973e9a23b399a5c409 100644
|
| --- a/runtime/observatory/lib/src/repositories/isolate.dart
|
| +++ b/runtime/observatory/lib/src/repositories/isolate.dart
|
| @@ -5,7 +5,7 @@
|
| part of repositories;
|
|
|
| class IsolateRepository extends M.IsolateRepository {
|
| - Future<M.Isolate> get(M.IsolateRef i) async{
|
| + Future<M.Isolate> get(M.IsolateRef i) async {
|
| S.Isolate isolate = i as S.Isolate;
|
| assert(isolate != null);
|
| try {
|
| @@ -16,7 +16,7 @@ class IsolateRepository extends M.IsolateRepository {
|
| return isolate;
|
| }
|
|
|
| - Future reloadSources(M.IsolateRef i) async{
|
| + Future reloadSources(M.IsolateRef i) async {
|
| S.Isolate isolate = i as S.Isolate;
|
| assert(isolate != null);
|
| await isolate.reloadSources();
|
|
|