marc2332 1 year ago
parent
commit
27bfabd425
1 changed files with 0 additions and 10 deletions
  1. 0 10
      packages/autofmt/src/component.rs

+ 0 - 10
packages/autofmt/src/component.rs

@@ -154,17 +154,11 @@ impl Writer<'_> {
         manual_props: &Option<syn::Expr>,
         sameline: bool,
     ) -> Result {
-        println!("fields {fields:?}");
-        println!("manual_props {manual_props:?}");
-
         let mut field_iter = fields.iter().peekable();
 
         while let Some(field) = field_iter.next() {
-            println!("{:?}", field);
             if !sameline {
                 self.out.indented_tabbed_line().unwrap();
-            } else {
-                println!("not  line????");
             }
 
             let name = &field.name;
@@ -206,17 +200,13 @@ impl Writer<'_> {
 
                 if sameline {
                     write!(self.out, " ")?;
-                    println!("not  line-----");
                 }
             }
         }
 
         if let Some(exp) = manual_props {
-            println!("{:?}", exp);
             if !sameline {
                 self.out.indented_tabbed_line().unwrap();
-            } else {
-                println!("not  line!!!!!!");
             }
             self.write_manual_props(exp)?;
         }