From 63f43021b07039852910e6d48b7e330858aed735 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 22 Dec 2016 10:12:08 +0100 Subject: [PATCH] src: remove unused PROTOCOL_JSON array Overlooked when moving code around in commit 42da740 ("inspector: split HTTP/WS server from the inspector".) PR-URL: https://github.com/nodejs/node/pull/10407 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Santiago Gimeno --- src/inspector_agent.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/inspector_agent.cc b/src/inspector_agent.cc index 2173af146855fd..403afe0e120b97 100644 --- a/src/inspector_agent.cc +++ b/src/inspector_agent.cc @@ -31,10 +31,6 @@ namespace { using v8_inspector::StringBuffer; using v8_inspector::StringView; -static const uint8_t PROTOCOL_JSON[] = { -#include "v8_inspector_protocol_json.h" // NOLINT(build/include_order) -}; - std::string GetProcessTitle() { // uv_get_process_title will trim the title if it is too long. char title[2048];