1
Fork 0

Remove dead codes

This commit is contained in:
Kiet Tran 2013-12-08 02:55:28 -05:00
parent c06dd0e0af
commit 1755408d1a
67 changed files with 150 additions and 1130 deletions

View file

@ -1049,11 +1049,6 @@ fn prefix_len(p: Option<PathPrefix>) -> uint {
}
}
fn prefix_is_sep(p: Option<PathPrefix>, c: u8) -> bool {
c.is_ascii() && if !prefix_is_verbatim(p) { is_sep(c as char) }
else { is_sep_verbatim(c as char) }
}
#[cfg(test)]
mod tests {
use super::*;