Index: trunk/src/org/openstreetmap/josm/data/validation/tests/Highways.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/tests/Highways.java	(revision 8453)
+++ trunk/src/org/openstreetmap/josm/data/validation/tests/Highways.java	(revision 8454)
@@ -43,5 +43,5 @@
      * Classified highways in order of importance
      */
-    private static final Set<String> CLASSIFIED_HIGHWAYS = new HashSet<>(Arrays.asList(
+    private static final List<String> CLASSIFIED_HIGHWAYS = Arrays.asList(
             "motorway",  "motorway_link",
             "trunk",     "trunk_link",
@@ -51,5 +51,5 @@
             "unclassified",
             "residential",
-            "living_street"));
+            "living_street");
 
     private static final Set<String> KNOWN_SOURCE_MAXSPEED_CONTEXTS = new HashSet<>(Arrays.asList(
Index: trunk/src/org/openstreetmap/josm/gui/MapView.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/MapView.java	(revision 8453)
+++ trunk/src/org/openstreetmap/josm/gui/MapView.java	(revision 8454)
@@ -26,7 +26,6 @@
 import java.util.Collections;
 import java.util.Comparator;
-import java.util.LinkedHashSet;
+import java.util.LinkedList;
 import java.util.List;
-import java.util.Set;
 import java.util.concurrent.CopyOnWriteArrayList;
 
@@ -225,5 +224,5 @@
     public MouseEvent lastMEvent = new MouseEvent(this, 0, 0, 0, 0, 0, 0, false); // In case somebody reads it before first mouse move
 
-    private final transient Set<MapViewPaintable> temporaryLayers = new LinkedHashSet<>();
+    private final transient List<MapViewPaintable> temporaryLayers = new LinkedList<>();
 
     private transient BufferedImage nonChangedLayersBuffer;
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationEditor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationEditor.java	(revision 8453)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationEditor.java	(revision 8454)
@@ -8,7 +8,7 @@
 import java.lang.reflect.Constructor;
 import java.lang.reflect.Method;
+import java.util.ArrayList;
 import java.util.Collection;
-import java.util.LinkedHashSet;
-import java.util.Set;
+import java.util.List;
 
 import org.openstreetmap.josm.Main;
@@ -32,5 +32,5 @@
 
     /** the list of registered relation editor classes */
-    private static Set<Class<RelationEditor>> editors = new LinkedHashSet<>();
+    private static List<Class<RelationEditor>> editors = new ArrayList<>();
 
     /**
