From 099474053ebca7ad13a5c583480bbee96fb6e7ff Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 1 Jul 2025 13:38:47 -0500 Subject: [PATCH] cleanuip --- esphome/components/ota/automation.h | 1 - esphome/components/ota/ota.cpp | 10 ---------- esphome/components/ota/ota.h | 12 ------------ 3 files changed, 23 deletions(-) delete mode 100644 esphome/components/ota/ota.cpp delete mode 100644 esphome/components/ota/ota.h diff --git a/esphome/components/ota/automation.h b/esphome/components/ota/automation.h index 2dbf0c70e1..5c71859d43 100644 --- a/esphome/components/ota/automation.h +++ b/esphome/components/ota/automation.h @@ -1,6 +1,5 @@ #pragma once #ifdef USE_OTA_STATE_CALLBACK -#include "ota.h" #include "esphome/components/ota_base/ota_backend.h" #include "esphome/core/automation.h" diff --git a/esphome/components/ota/ota.cpp b/esphome/components/ota/ota.cpp deleted file mode 100644 index 47fda17be8..0000000000 --- a/esphome/components/ota/ota.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include "ota.h" - -namespace esphome { -namespace ota { - -// All functionality has been moved to ota_base -// This file remains for backward compatibility - -} // namespace ota -} // namespace esphome diff --git a/esphome/components/ota/ota.h b/esphome/components/ota/ota.h deleted file mode 100644 index 141f99c87b..0000000000 --- a/esphome/components/ota/ota.h +++ /dev/null @@ -1,12 +0,0 @@ -#pragma once - -#include "esphome/core/defines.h" - -namespace esphome { -namespace ota { - -// All OTA backend functionality has been moved to the ota_base component. -// This file remains for the high-level OTA automation triggers defined in automation.h - -} // namespace ota -} // namespace esphome