diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-03-28 02:23:20 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-03-28 02:23:20 -0700 |
| commit | cbce6bfbdb140561add2ff258b305e7c7f2ad5c6 (patch) | |
| tree | 1f30cca11906cea62f06810e0e8ad6d5f787633b /src/libsyntax/util/parser_testing.rs | |
| parent | 0c9de8140b8abdd2d0a83db93746c58e8bc0da2c (diff) | |
| download | rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.tar.gz rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.zip | |
cleanup: Remove unused braces in use statements
Diffstat (limited to 'src/libsyntax/util/parser_testing.rs')
| -rw-r--r-- | src/libsyntax/util/parser_testing.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/util/parser_testing.rs b/src/libsyntax/util/parser_testing.rs index 9b570c2b1fe..ec608646327 100644 --- a/src/libsyntax/util/parser_testing.rs +++ b/src/libsyntax/util/parser_testing.rs @@ -9,9 +9,9 @@ // except according to those terms. use ast; -use parse::{new_parse_sess}; +use parse::new_parse_sess; use parse::{ParseSess,string_to_filemap,filemap_to_tts}; -use parse::{new_parser_from_source_str}; +use parse::new_parser_from_source_str; use parse::parser::Parser; use parse::token; use ptr::P; |
