mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
Removed StringAdapter::equals()
This commit is contained in:
@@ -107,7 +107,7 @@ template <typename TAdaptedString>
|
||||
inline VariantSlot* CollectionData::getSlot(TAdaptedString key) const {
|
||||
VariantSlot* slot = _head;
|
||||
while (slot) {
|
||||
if (key.equals(slot->key()))
|
||||
if (key.compare(slot->key()) == 0)
|
||||
break;
|
||||
slot = slot->next();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user