Skip to content

Commit d3acc52

Browse files
committed
Switched from HashSet to LinkedHashSet in PropertyAccesses
1 parent 63a1113 commit d3acc52

File tree

1 file changed

+2
-1
lines changed
  • plugins/org.eclipse.epsilon.eol.engine/src/org/eclipse/epsilon/eol/execute/introspection/recording

1 file changed

+2
-1
lines changed

plugins/org.eclipse.epsilon.eol.engine/src/org/eclipse/epsilon/eol/execute/introspection/recording/PropertyAccesses.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import java.util.Arrays;
1313
import java.util.Collection;
1414
import java.util.HashSet;
15+
import java.util.LinkedHashSet;
1516
import java.util.LinkedList;
1617
import java.util.List;
1718
import java.util.Objects;
@@ -33,7 +34,7 @@ public Collection<? extends IPropertyAccess> all() {
3334

3435
@Override
3536
public Set<? extends IPropertyAccess> unique() {
36-
return new HashSet<>(storage);
37+
return new LinkedHashSet<>(storage);
3738
}
3839

3940
public void add(IPropertyAccess propertyAccess) {

0 commit comments

Comments
 (0)