this repo has no description

remove old dbg macros

phaz.uk 9bb99263 b2c1e611

verified
Changed files
-16
src-tauri
src
frontend_calls
runtime
-2
src-tauri/src/frontend_calls/save_graph.rs
··· 4 4 5 5 #[tauri::command] 6 6 pub fn save_graph( graph: String, path: PathBuf ) { 7 - dbg!(&graph, &path); 8 - 9 7 let file = File::create(&path).unwrap(); 10 8 let mut encoder = GzEncoder::new(file, Compression::default()); 11 9
-2
src-tauri/src/runtime/nodes/conditional/ifequal.rs
··· 8 8 9 9 impl ConditionalIfEqual{ 10 10 pub fn new( node: Node ) -> Box<Self>{ 11 - dbg!(&node); 12 - 13 11 Box::new(Self { 14 12 outputs: node.outputs.iter() 15 13 .map(| x | {
-2
src-tauri/src/runtime/nodes/conditional/iffalse.rs
··· 7 7 8 8 impl ConditionalIfFalse{ 9 9 pub fn new( node: Node ) -> Box<Self>{ 10 - dbg!(&node); 11 - 12 10 Box::new(Self { 13 11 outputs: node.outputs.iter() 14 12 .map(| x | {
-2
src-tauri/src/runtime/nodes/conditional/iftrue.rs
··· 7 7 8 8 impl ConditionalIfTrue{ 9 9 pub fn new( node: Node ) -> Box<Self>{ 10 - dbg!(&node); 11 - 12 10 Box::new(Self { 13 11 outputs: node.outputs.iter() 14 12 .map(| x | {
-2
src-tauri/src/runtime/nodes/osctrigger.rs
··· 8 8 9 9 impl OSCTrigger{ 10 10 pub fn new( node: Node ) -> Box<Self>{ 11 - dbg!(&node); 12 - 13 11 let value = &node.statics[0].value; 14 12 15 13 Box::new(Self {
-2
src-tauri/src/runtime/nodes/statics/float.rs
··· 7 7 8 8 impl StaticFloat{ 9 9 pub fn new( node: Node ) -> Box<Self>{ 10 - dbg!(&node); 11 - 12 10 let value = &node.statics[0].value; 13 11 14 12 Box::new(Self {
-2
src-tauri/src/runtime/nodes/statics/int.rs
··· 7 7 8 8 impl StaticInt{ 9 9 pub fn new( node: Node ) -> Box<Self>{ 10 - dbg!(&node); 11 - 12 10 let value = &node.statics[0].value; 13 11 14 12 Box::new(Self {
-2
src-tauri/src/runtime/nodes/statics/string.rs
··· 7 7 8 8 impl StaticString{ 9 9 pub fn new( node: Node ) -> Box<Self>{ 10 - dbg!(&node); 11 - 12 10 let value = &node.statics[0].value; 13 11 14 12 Box::new(Self {