Removed completed TODO

This commit is contained in:
SRGDamia1
2017-04-06 13:33:51 -04:00
parent b196746fc0
commit 206044a1ba
3 changed files with 3 additions and 3 deletions

View File

@@ -573,7 +573,7 @@ private:
return return_string;
}
bool streamSkipUntil(char c) { //TODO: timeout
bool streamSkipUntil(char c) {
String skipped = stream.readStringUntil(c);
skipped.trim();
if (skipped.length()) {

View File

@@ -594,7 +594,7 @@ private:
return return_string;
}
bool streamSkipUntil(char c) { //TODO: timeout
bool streamSkipUntil(char c) {
String skipped = stream.readStringUntil(c);
skipped.trim();
if (skipped.length()) {

View File

@@ -729,7 +729,7 @@ private:
return return_string;
}
bool streamSkipUntil(char c) { //TODO: timeout
bool streamSkipUntil(char c) {
String skipped = stream.readStringUntil(c);
skipped.trim();
if (skipped.length()) {