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

@ -415,7 +415,7 @@ struct SharingCacheBase<Candidate> {
impl<Candidate> Default for SharingCacheBase<Candidate> {
fn default() -> Self {
Self {
entries: LRUCache::new(),
entries: LRUCache::default(),
}
}
}