Remove misc. unnecessary statements

This commit is contained in:
Charlie Marsh 2022-09-29 18:45:10 -04:00
parent 43a4f5749e
commit ca6551eb37
3 changed files with 0 additions and 5 deletions

View file

@ -1,5 +1,3 @@
extern crate core;
mod ast; mod ast;
mod autofix; mod autofix;
pub mod cache; pub mod cache;

View file

@ -1,5 +1,3 @@
extern crate core;
use std::io; use std::io;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::process::ExitCode; use std::process::ExitCode;

View file

@ -39,7 +39,6 @@ impl fmt::Display for Message {
f, f,
"{}{}{}{}{}{} {} {}", "{}{}{}{}{}{} {} {}",
relativize_path(Path::new(&self.filename)).white().bold(), relativize_path(Path::new(&self.filename)).white().bold(),
// self.filename.white(),
":".cyan(), ":".cyan(),
self.location.row(), self.location.row(),
":".cyan(), ":".cyan(),