Skip to content

Commit 784bb05

Browse files
committed
remove debug things
1 parent a64778e commit 784bb05

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/formatting/cargo_toml.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ impl VisitMut for FormatInlineTable {
296296
let mut long_tables = vec![];
297297
std::mem::swap(&mut self.long_tables, &mut long_tables);
298298

299-
println!("\n\n long tables\n {:?}\n\n", long_tables);
300299
long_tables.into_iter().for_each(|(section, key, table)| {
301300
match table {
302301
Item::Value(Value::InlineTable(table)) => {
@@ -324,7 +323,6 @@ impl VisitMut for FormatInlineTable {
324323

325324
long_table_keys.into_iter().for_each(|key| {
326325
let item = table.remove(&key).unwrap();
327-
println!("removed long item {:?}", item);
328326
self.long_tables
329327
.push((self.current_section.clone(), key, item));
330328
});
@@ -406,7 +404,6 @@ path = "extremely_long_path_name_goes_right_here"
406404
version = "4.5.6"
407405
"#;
408406

409-
println!("{}", formatted);
410407
assert_eq!(formatted, expected);
411408
}
412409
}

0 commit comments

Comments
 (0)