Fix variable name

This commit is contained in:
CodeSteak 2020-06-21 19:01:25 +02:00
parent a1abbf5329
commit 7fafd14715
1 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ class CronjobController {
final DashboardCronjob dashboardCronjob = null;
@Autowired
final AutoSupplierPayment AutoSupplierPaymentJob = null;
final AutoSupplierPayment autoSupplierPaymentJob = null;
@PostConstruct
public void init() {
@ -286,7 +286,7 @@ class CronjobController {
// Register all existing cronjobs
map.put(BackgroundJob.JOB_REORDER, reorderJob);
map.put(BackgroundJob.JOB_DASHBOARD, dashboardCronjob);
map.put(BackgroundJob.JOB_SUPPLIER_AUTO_PAYMENT, AutoSupplierPaymentJob);
map.put(BackgroundJob.JOB_SUPPLIER_AUTO_PAYMENT, autoSupplierPaymentJob);
return Collections.unmodifiableMap(map);
}