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/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParserTest.java

    r15591 r15735  
    278278
    279279        tagRegex(way1, "way[ref][count(tag_regex(\"ref\")) > 1] {}", new Boolean[] {true, false, false, true, false});
    280         way1.keySet().stream().forEach(key -> way1.put(key, null));
     280        way1.keySet().forEach(key -> way1.put(key, null));
    281281        way1.put("old_ref", "A1");
    282282        way1.put("ref", "A2");
Note: See TracChangeset for help on using the changeset viewer.