Clean up some uses of String::substr
Cases where the end position is either equvalent to the default or past the end of the string.
This commit is contained in:
parent
f2cc3f1275
commit
5113022dfe
54 changed files with 123 additions and 123 deletions
|
|
@ -118,7 +118,7 @@ Dictionary HTTPClient::_get_response_headers_as_dictionary() {
|
|||
continue;
|
||||
}
|
||||
String key = s.substr(0, sp).strip_edges();
|
||||
String value = s.substr(sp + 1, s.length()).strip_edges();
|
||||
String value = s.substr(sp + 1).strip_edges();
|
||||
ret[key] = value;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue