Remove unused use statements (#497)

This commit is contained in:
Casey Rodarmor 2019-10-16 03:15:59 -07:00 committed by GitHub
parent 6acabb2562
commit 750ba6eb57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,4 @@
use crate::common::*; use crate::common::*;
use std::fs;
use std::path::{Path, PathBuf};
const FILENAME: &str = "justfile"; const FILENAME: &str = "justfile";
@ -35,7 +33,6 @@ pub(crate) fn justfile(directory: &Path) -> Result<PathBuf, SearchError> {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; use super::*;
use std::fs;
#[test] #[test]
fn not_found() { fn not_found() {