From 32449e62ccdd683bd30b6d3fae6ea4d83fed4a57 Mon Sep 17 00:00:00 2001 From: agessaman Date: Sat, 25 Apr 2026 18:15:02 -0700 Subject: [PATCH] fix(mqtt): remove errant clearLastWill method from PsychicMqttClient --- lib/PsychicMqttClient/src/PsychicMqttClient.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/PsychicMqttClient/src/PsychicMqttClient.h b/lib/PsychicMqttClient/src/PsychicMqttClient.h index e7b45b9e..80961d22 100644 --- a/lib/PsychicMqttClient/src/PsychicMqttClient.h +++ b/lib/PsychicMqttClient/src/PsychicMqttClient.h @@ -224,11 +224,6 @@ public: */ PsychicMqttClient &setWill(const char *topic, uint8_t qos, bool retain, const char *payload = nullptr, int length = 0); - /** - * @brief Clears the last will and testament (disables LWT for the next connect / config apply). - */ - PsychicMqttClient &clearLastWill(); - /** * @brief Sets the MQTT server URI. Supports mqtt://, mqtts:// and ws://, wss:// as * transport protocols. Fully supports SSL/TLS.