Ignore:
Timestamp:
2020-01-19T23:02:10+01:00 (6 years ago)
Author:
simon04
Message:

Java 8: replace .stream().forEach() with .forEach()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/AddPrimitivesCommand.java

    r13173 r15735  
    9797                }
    9898            }
    99             newPrimitives.stream().forEach(p -> p.setModified(true));
     99            newPrimitives.forEach(p -> p.setModified(true));
    100100        } else { // redo
    101101            // When redoing this command, we have to add the same objects, otherwise
Note: See TracChangeset for help on using the changeset viewer.