Changeset 13618 in josm for trunk/test/unit/org
- Timestamp:
- 2018-04-12T01:49:18+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java
r13609 r13618 248 248 InputStream stderr = process.getErrorStream(); 249 249 try (BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(stdin, StandardCharsets.UTF_8))) { 250 String s = String.format("%.9f %.9f%n", ll.lon(), ll.lat()); 250 String s = String.format("%s %s%n", 251 LatLon.cDdHighPecisionFormatter.format(ll.lon()), 252 LatLon.cDdHighPecisionFormatter.format(ll.lat())); 251 253 if (debug) { 252 254 System.out.println("\n" + String.join(" ", args) + "\n" + s);
Note:
See TracChangeset
for help on using the changeset viewer.