| Index: runtime/vm/service.cc
|
| diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
|
| index 4237a79d0e53f82e05be171f932cdad2937c8fab..9861972bfc0f57f75278cc45699b263ffb83e4fc 100644
|
| --- a/runtime/vm/service.cc
|
| +++ b/runtime/vm/service.cc
|
| @@ -2127,7 +2127,6 @@ static const MethodParameter* get_tag_profile_params[] = {
|
| static bool GetTagProfile(Isolate* isolate, JSONStream* js) {
|
| JSONObject miniProfile(js);
|
| miniProfile.AddProperty("type", "TagProfile");
|
| - miniProfile.AddProperty("id", "profile/tag");
|
| isolate->vm_tag_counters()->PrintToJSONObject(&miniProfile);
|
| return true;
|
| }
|
| @@ -2243,7 +2242,6 @@ static bool RequestHeapSnapshot(Isolate* isolate, JSONStream* js) {
|
| // TODO(koda): Provide some id that ties this request to async response(s).
|
| JSONObject jsobj(js);
|
| jsobj.AddProperty("type", "OK");
|
| - jsobj.AddProperty("id", "ok");
|
| return true;
|
| }
|
|
|
|
|