Skip to content

Commit

Permalink
refactor(header): remove unused VecMap.is_empty
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Apr 26, 2017
1 parent 8d6d9a2 commit 5130fa4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/header/internals/vec_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ impl<K: PartialEq, V> VecMap<K, V> {
#[inline]
pub fn len(&self) -> usize { self.vec.len() }

#[inline]
pub fn is_empty(&self) -> bool { self.vec.is_empty() }

#[inline]
pub fn iter(&self) -> ::std::slice::Iter<(K, V)> {
self.vec.iter()
Expand Down

0 comments on commit 5130fa4

Please sign in to comment.