Minor refactoring

This commit is contained in:
Patrick Lühne 2019-03-02 01:04:26 +01:00
parent e19e405781
commit e4a574b240
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 3 additions and 15 deletions

View File

@ -446,22 +446,10 @@ impl BenchmarkRepository
false
}
);
println!("================");
std::thread::sleep(std::time::Duration::from_secs(2));
}
//let origin = self.inner.repository.find_remote("origin").expect("could not find remote “origin”");
for reference in self.repository.references().unwrap().names()
{
println!("{}", reference.unwrap());
}
println!("================");
use std::{thread, time};
let time = time::Duration::from_secs(2);
thread::sleep(time);
}
}
}