Skip to content

Commit

Permalink
Fix typo causing duplicate elements to appear
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund authored and OpenModelica-Hudson committed Jan 9, 2018
1 parent 715fb85 commit efcef39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Parsers/SimpleModelicaParser.mo
Expand Up @@ -2367,7 +2367,7 @@ algorithm
lst2 := {};
for l2 in lst loop
try
lst2 := List.getMemberOnTrue(l1, deleted, compare)::lst2;
lst2 := List.getMemberOnTrue(l2, deleted, compare)::lst2;
else
lst2 := l2::lst2;
end try;
Expand Down

0 comments on commit efcef39

Please sign in to comment.