From 8e87a6e51c93e7836ecdbcc0a520c7992f3ece13 Mon Sep 17 00:00:00 2001 From: Crisrael Lucero Date: Thu, 7 Nov 2024 18:16:45 -0800 Subject: [PATCH] Remove unused private field variable in MultiplexSocket PiperOrigin-RevId: 694313402 --- connections/implementation/mediums/multiplex/multiplex_socket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connections/implementation/mediums/multiplex/multiplex_socket.h b/connections/implementation/mediums/multiplex/multiplex_socket.h index dbc17713..e365d48b 100644 --- a/connections/implementation/mediums/multiplex/multiplex_socket.h +++ b/connections/implementation/mediums/multiplex/multiplex_socket.h @@ -207,7 +207,6 @@ class MultiplexSocket { // enable it once two devices negotiated finished. AtomicBoolean enabled_{false}; - std::int32_t first_frame_len_ = 0; // If the socket is already shutdown and no longer in use. bool is_shutdown_ = false; static AtomicBoolean is_shutting_down_; @@ -218,4 +217,5 @@ class MultiplexSocket { } // namespace mediums } // namespace connections } // namespace nearby + #endif // CORE_INTERNAL_MEDIUMS_MULTIPLEX_MULTIPLEX_SOCKET_H_