remove debugging

This commit is contained in:
mirrerror
2023-10-03 11:52:35 +03:00
parent f512c50aaf
commit 46dad36166

View File

@@ -42,7 +42,6 @@ public class IncomeController {
public ResponseEntity<Income> updateIncome(@RequestBody Income income,
BindingResult bindingResult) {
if (!bindingResult.hasErrors()) {
System.out.println("amount: " + income.getAmount());
incomeService.createOrUpdateIncome(income);
return ResponseEntity.ok(income);
} else {