diff --git a/src/libstd/smallintmap.rs b/src/libstd/smallintmap.rs index a21328b3d634..1cd35722ab46 100644 --- a/src/libstd/smallintmap.rs +++ b/src/libstd/smallintmap.rs @@ -116,8 +116,6 @@ pub impl SmallIntMap { } pub impl SmallIntMap { - // FIXME: #4733, remove after the next snapshot - #[cfg(stage2)] fn update_with_key(&mut self, key: uint, val: V, ff: fn(uint, V, V) -> V) -> bool { match self.find(&key) { @@ -126,8 +124,6 @@ pub impl SmallIntMap { } } - // FIXME: #4733, remove after the next snapshot - #[cfg(stage2)] fn update(&mut self, key: uint, newval: V, ff: fn(V, V) -> V) -> bool { self.update_with_key(key, newval, |_k, v, v1| ff(v,v1)) }