From 14bd2f5a52c300771a33d22725a02d2d01c7e1ba Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 23 Apr 2026 05:12:12 -0500 Subject: [PATCH] [core] Remove stale includes from application.cpp socket.h is unused after #15931 moved the host wake mechanism to wake.cpp. lwip_fast_select.h is already included via application.h under the same guard. --- esphome/core/application.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/esphome/core/application.cpp b/esphome/core/application.cpp index 11381030a31..9d9bd024c66 100644 --- a/esphome/core/application.cpp +++ b/esphome/core/application.cpp @@ -12,9 +12,6 @@ #include #include #endif -#ifdef USE_LWIP_FAST_SELECT -#include "esphome/core/lwip_fast_select.h" -#endif // USE_LWIP_FAST_SELECT #include "esphome/core/version.h" #include "esphome/core/hal.h" #include @@ -24,10 +21,6 @@ #include "esphome/components/status_led/status_led.h" #endif -#if (defined(USE_ESP8266) || defined(USE_RP2040)) && defined(USE_SOCKET_IMPL_LWIP_TCP) -#include "esphome/components/socket/socket.h" -#endif - namespace esphome { static const char *const TAG = "app";