mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Add plugins for compositing and net crates #7699
Changed to_string calls to to_owned calls where was a need.
This commit is contained in:
parent
44de9173cc
commit
88815d21ba
18 changed files with 43 additions and 31 deletions
|
@ -107,7 +107,7 @@ impl CookieStorage {
|
|||
_ => acc + ";"
|
||||
}) + &c.cookie.name + "=" + &c.cookie.value
|
||||
};
|
||||
let result = url_cookies.iter_mut().fold("".to_string(), reducer);
|
||||
let result = url_cookies.iter_mut().fold("".to_owned(), reducer);
|
||||
|
||||
info!(" === COOKIES SENT: {}", result);
|
||||
match result.len() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue