about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-09-19 15:13:04 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-09-19 15:51:44 -0700
commit1ffd90edbc5494d54ab911e9931c296aca7a7707 (patch)
tree7d6cf224429bdc7f26cef9b91ccd170a9318b7e6 /src/libsyntax/parse/parser.rs
parent384906c1e807196fbb8653e3233c92f920888d40 (diff)
downloadrust-1ffd90edbc5494d54ab911e9931c296aca7a7707.tar.gz
rust-1ffd90edbc5494d54ab911e9931c296aca7a7707.zip
Remove redundant hashmap constructor functions.
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 06e68a09abe..0902567e864 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -2,7 +2,7 @@ use print::pprust::expr_to_str;
 
 use result::Result;
 use either::{Either, Left, Right};
-use std::map::{HashMap, str_hash};
+use std::map::HashMap;
 use token::{can_begin_expr, is_ident, is_ident_or_path, is_plain_ident,
             INTERPOLATED, special_idents};
 use codemap::{span,fss_none};