Skip to content

Commit

Permalink
PAGOPA-1776 removing vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoRuzzier committed May 29, 2024
1 parent 0be1e9b commit a56bc0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ public void loadCbillByCsv(MultipartFile file, boolean incremental) {
List<Pa> paList;
if (incremental) {
Optional<List<Pa>> list = paRepository.findPaWithoutCbill();
paList = list.orElse(new ArrayList<Pa>());
paList = list.orElse(new ArrayList<>());
} else {
paList = paRepository.findAll();
}
Expand Down

0 comments on commit a56bc0d

Please sign in to comment.