Remove obsolete comment in rustc::middle::subst.

This was added in d2f8074 along with the AssocSpace stuff. The AssocSpace
stuff was then removed in de8e0ae, except the comment was missed it seems.
This commit is contained in:
Nick Hamann 2015-05-09 23:43:48 -05:00
parent dc630d01e3
commit 788d76281e

View File

@ -273,7 +273,6 @@ pub fn params_from_type(types: Vec<T>) -> VecPerParamSpace<T> {
/// `t` is the type space.
/// `s` is the self space.
/// `a` is the assoc space.
/// `f` is the fn space.
pub fn new(t: Vec<T>, s: Vec<T>, f: Vec<T>) -> VecPerParamSpace<T> {
let type_limit = t.len();