Skip to content

Commit

Permalink
Remove do..begin
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperSchulz authored Sep 18, 2024
1 parent a1ee36c commit 97835af
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -435,9 +435,8 @@ codeunit 324 "No. Series Copilot Impl."
begin
Json.InitializeCollection(NoSeriesArrText);

for i := 0 to Json.GetCollectionCount() - 1 do begin
for i := 0 to Json.GetCollectionCount() - 1 do
ProcessNoSeries(i, NoSeriesCodes, Json);
end;

NoSeriesArrText := Json.GetCollectionAsText()
end;
Expand Down

0 comments on commit 97835af

Please sign in to comment.