Skip to content

Commit 1387426

Browse files
committed
unnecessary condition removed
1 parent 6d80177 commit 1387426

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

entries/ghatem-fpc/src/OneBRC.lpr

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -580,8 +580,7 @@ procedure TOneBRC.GenerateOutput;
580580
try
581581
vStations.BeginUpdate;
582582
for iStationName in FDictionary.FStationNames do begin
583-
if iStationName <> '' then
584-
vStations.Add(iStationName);
583+
vStations.Add(iStationName);
585584
end;
586585
vStations.EndUpdate;
587586
vStations.CustomSort (@Compare);

0 commit comments

Comments
 (0)