| Index: runtime/observatory/lib/src/repositories/inbound_references.dart
|
| diff --git a/runtime/observatory/lib/src/repositories/inbound_references.dart b/runtime/observatory/lib/src/repositories/inbound_references.dart
|
| index 28fd8509b9b316cc02c2ee66fa56336ea6ba8bd3..be1e1f4948c427d960676e8eaffc601665a423c1 100644
|
| --- a/runtime/observatory/lib/src/repositories/inbound_references.dart
|
| +++ b/runtime/observatory/lib/src/repositories/inbound_references.dart
|
| @@ -8,10 +8,8 @@ class InboundReferencesRepository implements M.InboundReferencesRepository {
|
| Future<M.InboundReferences> get(M.IsolateRef i, String id) async {
|
| S.Isolate isolate = i as S.Isolate;
|
| assert(isolate != null);
|
| - final response = await isolate.invokeRpc('_getInboundReferences', {
|
| - 'targetId' : id,
|
| - 'limit': 100
|
| - });
|
| + final response = await isolate
|
| + .invokeRpc('_getInboundReferences', {'targetId': id, 'limit': 100});
|
| return new S.InboundReferences(response);
|
| }
|
| }
|
|
|