Skip to content

Commit

Permalink
Fix UOB import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ystxn committed Dec 5, 2024
1 parent e87f4ee commit 30d364a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ private List<Transaction> processCredit(
) {
List<Transaction> output = new ArrayList<>();

for (int i = 11; i <= data.size(); i++) {
for (int i = 11; i < data.size(); i++) {
List<Object> dataRow = data.get(i);
LocalDate localDate = LocalDate.parse(dataRow.getFirst().toString(), dateFormat);
Instant date = localDate.atStartOfDay(ZoneOffset.UTC).toInstant();
Expand Down

0 comments on commit 30d364a

Please sign in to comment.