Skip to content

Commit

Permalink
[Ili2pgValidate] rewrite for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
webrian committed Mar 13, 2024
1 parent af745de commit b1dabca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gretl/src/main/java/ch/so/agi/gretl/tasks/Ili2pgValidate.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public void validateData() {
}

if (datasetNames != null) {
for (int i = 0; i < datasetNames.size(); i++) {
settings.setDatasetName(datasetNames.get(i));
for (String ds : datasetNames) {
settings.setDatasetName(ds);
run(function, settings);
}
} else {
Expand Down

0 comments on commit b1dabca

Please sign in to comment.