From 380ead2b8f62ae7b999ae887c11d18090a557018 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Villac=C3=ADs=20Lasso?= Date: Tue, 29 Dec 2020 17:28:42 -0500 Subject: [PATCH] Remove no-longer-used StringArray class Fraction of commit 8bb1c704cd70dd58b318b296154a5404a1bd27d0 of dumbfixes branch of 0xFEEDC0DE64 fork of ESPAsyncWebServer. Split off for clarity. --- src/StringArray.h | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/StringArray.h b/src/StringArray.h index 4c0aa70..d5096e6 100644 --- a/src/StringArray.h +++ b/src/StringArray.h @@ -171,23 +171,4 @@ class LinkedList { } }; - -class StringArray : public LinkedList { -public: - - StringArray() : LinkedList(nullptr) {} - - bool containsIgnoreCase(const String& str){ - for (const auto& s : *this) { - if (str.equalsIgnoreCase(s)) { - return true; - } - } - return false; - } -}; - - - - #endif /* STRINGARRAY_H_ */