diff options
Diffstat (limited to 'src/git-rustfmt')
| -rw-r--r-- | src/git-rustfmt/main.rs | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/src/git-rustfmt/main.rs b/src/git-rustfmt/main.rs index aae81ba3270..67b641a384d 100644 --- a/src/git-rustfmt/main.rs +++ b/src/git-rustfmt/main.rs @@ -1,18 +1,5 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or -// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license -// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -use env_logger; - #[macro_use] extern crate log; -use rustfmt_nightly as rustfmt; use std::env; use std::io::stdout; @@ -20,7 +7,9 @@ use std::path::{Path, PathBuf}; use std::process::Command; use std::str::FromStr; +use env_logger; use getopts::{Matches, Options}; +use rustfmt_nightly as rustfmt; use crate::rustfmt::{load_config, CliOptions, Input, Session}; |
