Removed debug from Parser

This commit is contained in:
Maddox Werts 2025-04-18 16:18:25 -04:00
parent 1fdb88f3a8
commit 78744a104f

View file

@ -134,10 +134,5 @@ impl Parser {
ParserModes::Credit => self.transaction(ParserModes::Credit, line), ParserModes::Credit => self.transaction(ParserModes::Credit, line),
} }
} }
// DEBUG: Print all transactions
for t in &self.transactions {
println!("Transaction {}: {} on {}", t.description, t.amount, t.date);
}
} }
} }