diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-09-28 19:57:06 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-09-28 19:57:06 -0400 |
commit | f14f09e8868d0cad0308c2fa8eec8369560ee096 (patch) | |
tree | ab39cbd3e2c4a7b8b40344d2210f20398759fc80 /components/script/lib.rs | |
parent | 2857e547be606cbed1e5db060d254116223b7723 (diff) | |
download | servo-f14f09e8868d0cad0308c2fa8eec8369560ee096.tar.gz servo-f14f09e8868d0cad0308c2fa8eec8369560ee096.zip |
Use util::str::str_join in more places
Instead of intermediate allocations of `Vec`s, we should utilize
`str_join` which operates on iterators
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 40df1c66ed2..6ebf3d12df6 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -24,7 +24,6 @@ #![feature(str_utf16)] #![feature(unicode)] #![feature(vec_push_all)] -#![feature(slice_concat_ext)] #![deny(unsafe_code)] #![allow(non_snake_case)] |