Index: trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java	(revision 15734)
+++ trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java	(revision 15735)
@@ -267,5 +267,5 @@
 
     private static void setSelection(DataSet ds, Collection<OsmPrimitive> toSet) {
-        toSet.stream().forEach(x -> updatePreservedFlag(x, true));
+        toSet.forEach(x -> updatePreservedFlag(x, true));
         ds.setSelected(toSet);
     }
@@ -334,5 +334,5 @@
         DataSet ds = getLayerManager().getEditDataSet();
         if (ds != null) {
-            ds.getSelected().stream().forEach(x -> updatePreservedFlag(x, false));
+            ds.getSelected().forEach(x -> updatePreservedFlag(x, false));
         }
 
@@ -387,6 +387,6 @@
         // Make sure helper line is computed later (causes deadlock in selection event chain otherwise)
         SwingUtilities.invokeLater(() -> {
-            event.getOldSelection().stream().forEach(x -> updatePreservedFlag(x, false));
-            event.getSelection().stream().forEach(x -> updatePreservedFlag(x, true));
+            event.getOldSelection().forEach(x -> updatePreservedFlag(x, false));
+            event.getSelection().forEach(x -> updatePreservedFlag(x, true));
             if (MainApplication.getMap() != null) {
                 computeHelperLine();
Index: trunk/src/org/openstreetmap/josm/command/AddPrimitivesCommand.java
===================================================================
--- trunk/src/org/openstreetmap/josm/command/AddPrimitivesCommand.java	(revision 15734)
+++ trunk/src/org/openstreetmap/josm/command/AddPrimitivesCommand.java	(revision 15735)
@@ -97,5 +97,5 @@
                 }
             }
-            newPrimitives.stream().forEach(p -> p.setModified(true));
+            newPrimitives.forEach(p -> p.setModified(true));
         } else { // redo
             // When redoing this command, we have to add the same objects, otherwise
Index: trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java	(revision 15734)
+++ trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java	(revision 15735)
@@ -267,5 +267,5 @@
     public void remove(Collection<Tag> tags) {
         if (tags != null) {
-            tags.stream().forEach(this::remove);
+            tags.forEach(this::remove);
         }
     }
@@ -279,5 +279,5 @@
     public void remove(TagCollection tags) {
         if (tags != null) {
-            tags.tags.keySet().stream().forEach(this::remove);
+            tags.tags.keySet().forEach(this::remove);
         }
     }
Index: trunk/src/org/openstreetmap/josm/gui/layer/CustomizeColor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/layer/CustomizeColor.java	(revision 15734)
+++ trunk/src/org/openstreetmap/josm/gui/layer/CustomizeColor.java	(revision 15735)
@@ -85,10 +85,10 @@
         switch (answer) {
         case 0:
-            colorLayers.stream().forEach(l -> l.setColor(c.getColor()));
+            colorLayers.forEach(l -> l.setColor(c.getColor()));
             break;
         case 1:
             return;
         case 2:
-            colorLayers.stream().forEach(l -> l.setColor(null));
+            colorLayers.forEach(l -> l.setColor(null));
             break;
         }
Index: trunk/src/org/openstreetmap/josm/gui/layer/gpx/ChooseTrackVisibilityAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/layer/gpx/ChooseTrackVisibilityAction.java	(revision 15734)
+++ trunk/src/org/openstreetmap/josm/gui/layer/gpx/ChooseTrackVisibilityAction.java	(revision 15735)
@@ -151,5 +151,5 @@
         switch (answer) {
         case 0:
-            tracks.stream().forEach(t -> t.setColor(c.getColor()));
+            tracks.forEach(t -> t.setColor(c.getColor()));
             GPXSettingsPanel.putLayerPrefLocal(layer, "colormode", "0"); //set Colormode to none
             break;
@@ -157,5 +157,5 @@
             return;
         case 2:
-            tracks.stream().forEach(t -> t.setColor(null));
+            tracks.forEach(t -> t.setColor(null));
             break;
         }
Index: trunk/src/org/openstreetmap/josm/gui/layer/gpx/CustomizeDrawingAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/layer/gpx/CustomizeDrawingAction.java	(revision 15734)
+++ trunk/src/org/openstreetmap/josm/gui/layer/gpx/CustomizeDrawingAction.java	(revision 15735)
@@ -92,5 +92,5 @@
         panel.savePreferences();
         MainApplication.getMainPanel().repaint();
-        layers.stream().forEach(Layer::invalidate);
+        layers.forEach(Layer::invalidate);
     }
 
Index: trunk/src/org/openstreetmap/josm/io/ValidatorErrorWriter.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/ValidatorErrorWriter.java	(revision 15734)
+++ trunk/src/org/openstreetmap/josm/io/ValidatorErrorWriter.java	(revision 15735)
@@ -84,5 +84,5 @@
                         map.put(errorClass, list);
                     }
-                    e2.getValue().values().stream().forEach(list::addAll);
+                    e2.getValue().values().forEach(list::addAll);
                 }
             }
Index: trunk/src/org/openstreetmap/josm/tools/bugreport/BugReport.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/bugreport/BugReport.java	(revision 15734)
+++ trunk/src/org/openstreetmap/josm/tools/bugreport/BugReport.java	(revision 15735)
@@ -158,5 +158,5 @@
 
     private void fireChange() {
-        listeners.stream().forEach(l -> l.bugReportChanged(this));
+        listeners.forEach(l -> l.bugReportChanged(this));
     }
 
