Remove crud

This commit is contained in:
Tim Chevalier 2012-10-03 14:28:47 -07:00
parent b6692500ff
commit c73e3320f8
1 changed files with 0 additions and 1 deletions

View File

@ -381,7 +381,6 @@ pub fn opt_str(mm: Matches, nm: &str) -> ~str {
* option took an argument
*/
pub fn opts_str(mm: Matches, names: &[~str]) -> ~str {
>>>>>>> Remove uses of + mode from libstd
for vec::each(names) |nm| {
match opt_val(mm, *nm) {
Val(copy s) => return s,