LRUCache::new -> LRUCache::default.

MozReview-Commit-ID: KouOaYTluRx
This commit is contained in:
Bobby Holley 2017-09-20 19:00:15 -07:00
parent 8b6c5988b5
commit 13a3cf27a8
3 changed files with 6 additions and 5 deletions

View file

@ -546,7 +546,7 @@ impl<E: TElement> SelectorFlagsMap<E> {
pub fn new() -> Self {
SelectorFlagsMap {
map: FnvHashMap::default(),
cache: LRUCache::new(),
cache: LRUCache::default(),
}
}