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