Skip to content

Commit

Permalink
Update name.abuchen.portfolio.ui/src/name/abuchen/portfolio/ui/wizard…
Browse files Browse the repository at this point in the history
…s/datatransfer/ImportController.java

Co-authored-by: Nirus2000 <[email protected]>
  • Loading branch information
buchen and Nirus2000 authored Aug 9, 2023
1 parent c663b9c commit 574267b
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ public void perform(List<ReviewExtractedItemsPage> pages)

var newSecurities = new ArrayList<Security>();

boolean isDirty = false;
for (int index = 0; index < pages.size(); index++)
var isDirty = false;
for (ReviewExtractedItemsPage page : pages)
{
ReviewExtractedItemsPage page = pages.get(index);
page.afterPage();

var isPageDirty = importPage(page, newSecurities);
isDirty |= isPageDirty;
}
Expand Down

0 comments on commit 574267b

Please sign in to comment.