Skip to content

Commit 380ead2

Browse files
committed
Remove no-longer-used StringArray class
Fraction of commit 8bb1c70 of dumbfixes branch of 0xFEEDC0DE64 fork of ESPAsyncWebServer. Split off for clarity.
1 parent 7f172ea commit 380ead2

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

src/StringArray.h

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -171,23 +171,4 @@ class LinkedList {
171171
}
172172
};
173173

174-
175-
class StringArray : public LinkedList<String> {
176-
public:
177-
178-
StringArray() : LinkedList(nullptr) {}
179-
180-
bool containsIgnoreCase(const String& str){
181-
for (const auto& s : *this) {
182-
if (str.equalsIgnoreCase(s)) {
183-
return true;
184-
}
185-
}
186-
return false;
187-
}
188-
};
189-
190-
191-
192-
193174
#endif /* STRINGARRAY_H_ */

0 commit comments

Comments
 (0)