[Cleanup] Use EMPTY_STRING instead of F("") to reduce build size

This commit is contained in:
TD-er
2021-05-26 00:17:34 +02:00
parent cd35a3ed6b
commit e3f65c1ece
45 changed files with 136 additions and 134 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ void pluginWebformShowValue(taskIndex_t taskIndex, byte varNr, const String& lab
}
void pluginWebformShowValue(const String& valName, const String& value, bool addBR) {
pluginWebformShowValue(valName, F(""), value, F(""), addBR);
pluginWebformShowValue(valName, EMPTY_STRING, value, EMPTY_STRING, addBR);
}
void pluginWebformShowValue(const String& valName, const String& valName_id, const String& value, const String& value_id, bool addBR) {