diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2017-08-31 15:28:01 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-08-31 16:28:30 -0700 |
commit | 5cd296a264a7f3225d2fa1e8c6710d8dece1022d (patch) | |
tree | a19c1af297c635d78560ad30ed1511170c4719c9 /components/style/custom_properties.rs | |
parent | fae5e1064307ea5ccef8e845e3e23e810df2a37f (diff) | |
download | servo-5cd296a264a7f3225d2fa1e8c6710d8dece1022d.tar.gz servo-5cd296a264a7f3225d2fa1e8c6710d8dece1022d.zip |
stylo: Replace all hashtable collections with ones from style::hash
Diffstat (limited to 'components/style/custom_properties.rs')
-rw-r--r-- | components/style/custom_properties.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/custom_properties.rs b/components/style/custom_properties.rs index f52495120f4..a318fce8b80 100644 --- a/components/style/custom_properties.rs +++ b/components/style/custom_properties.rs @@ -14,7 +14,7 @@ use selectors::parser::SelectorParseError; use servo_arc::Arc; use std::ascii::AsciiExt; use std::borrow::{Borrow, Cow}; -use std::collections::{HashMap, HashSet}; +use hash::{HashMap, HashSet}; use std::fmt; use std::hash::Hash; use style_traits::{ToCss, StyleParseError, ParseError}; |