Skip to content

Commit 2d2b6a8

Browse files
gengjiawentargos
authored andcommitted
src: remove unused variable in class InspectorSocketServer
PR-URL: #26633 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com>
1 parent e39a468 commit 2d2b6a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/inspector_socket_server.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,11 @@ class InspectorSocketServer {
8383
const std::string &formatted_address);
8484
bool TargetExists(const std::string& id);
8585

86-
enum class ServerState {kNew, kRunning, kStopping, kStopped};
86+
enum class ServerState {kNew, kRunning, kStopped};
8787
uv_loop_t* loop_;
8888
std::unique_ptr<SocketServerDelegate> delegate_;
8989
const std::string host_;
9090
int port_;
91-
std::string path_;
9291
std::vector<ServerSocketPtr> server_sockets_;
9392
std::map<int, std::pair<std::string, std::unique_ptr<SocketSession>>>
9493
connected_sessions_;

0 commit comments

Comments
 (0)