Skip to content

Commit

Permalink
TRACEFOSS-213: Fix setting updated bpn names for page (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-ext-jserwa authored Jun 30, 2022
1 parent b6d45e8 commit e49c2f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private List<Asset> getAssetsWithUpdatedNamesForPage(PagedListHolder<Asset> orig
List<Asset> sourceAssets = originPageListHolder.getSource();

for (int i = originPageListHolder.getFirstElementOnPage(), j = 0; i < originPageListHolder.getLastElementOnPage() + 1; i++, j++) {
sourceAssets.add(i, updatedAssets.get(j));
sourceAssets.set(i, updatedAssets.get(j));
}

return sourceAssets;
Expand Down

0 comments on commit e49c2f5

Please sign in to comment.