removed printlns, updated Changelog, updated man

This commit is contained in:
Alexander Karlis
2020-09-12 00:26:53 -04:00
committed by David Peter
parent d349974089
commit 6017989c4c
4 changed files with 8 additions and 4 deletions

View File

@ -288,7 +288,6 @@ impl App {
fn style_components(&self) -> Result<StyleComponents> {
let matches = &self.matches;
println!("{:#?}", matches);
Ok(StyleComponents(
if matches.value_of("decorations") == Some("never") {
HashSet::new()

View File

@ -209,7 +209,6 @@ fn run() -> Result<bool> {
} else {
let inputs = vec![Input::ordinary_file(OsStr::new("cache"))];
let config = app.config(&inputs)?;
println!("{:#?}", config);
run_controller(inputs, &config)
}
@ -218,8 +217,6 @@ fn run() -> Result<bool> {
let inputs = app.inputs()?;
let config = app.config(&inputs)?;
println!("{:#?}", config);
if app.matches.is_present("list-languages") {
list_languages(&config)?;
Ok(true)