Ignore:
Timestamp:
2020-01-18T14:13:56+01:00 (4 years ago)
Author:
simon04
Message:

Java 8: use String.join

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/ProjectionCLI.java

    r14436 r15716  
    2121import org.openstreetmap.josm.data.coor.conversion.LatLonParser;
    2222import org.openstreetmap.josm.tools.OptionParser;
    23 import org.openstreetmap.josm.tools.Utils;
    2423
    2524/**
     
    7170            }
    7271        }
    73         String fromStr = Utils.join(" ", projParamFrom);
    74         String toStr = Utils.join(" ", projParamTo);
     72        String fromStr = String.join(" ", projParamFrom);
     73        String toStr = String.join(" ", projParamTo);
    7574        try {
    7675            run(fromStr, toStr, otherPositional);
Note: See TracChangeset for help on using the changeset viewer.