mirror of
https://github.com/esphome/esphome.git
synced 2026-09-13 16:18:41 +00:00
The virtual destructor was unnecessary since APIConnection is only stored as unique_ptr<APIConnection>, never via a base class pointer. Removing it eliminates the vtable entirely. Rename read_message to read_message_ per clang-tidy naming convention for protected methods.