From f1fddc058e6545674fa0d314bee35d61ea540740 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 8 Oct 2025 08:06:38 -1000 Subject: [PATCH] adjust --- esphome/components/voice_assistant/voice_assistant.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/esphome/components/voice_assistant/voice_assistant.h b/esphome/components/voice_assistant/voice_assistant.h index 418e84819a..642916dbc5 100644 --- a/esphome/components/voice_assistant/voice_assistant.h +++ b/esphome/components/voice_assistant/voice_assistant.h @@ -171,9 +171,6 @@ class VoiceAssistant : public Component { void on_timer_event(const api::VoiceAssistantTimerEventResponse &msg); void on_announce(const api::VoiceAssistantAnnounceRequest &msg); void on_set_configuration(const std::vector &active_wake_words); - - // Returns cached configuration reference. Only rebuilds when config_needs_rebuild_ is true - // to prevent use-after-free with StringRef and avoid wasteful rebuilding. const Configuration &get_configuration(); bool is_running() const { return this->state_ != State::IDLE; }