Changeset 12537 in josm for trunk/src/org/openstreetmap/josm/io/GeoJSONWriter.java
- Timestamp:
- 2017-07-30T00:22:46+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/GeoJSONWriter.java
r12439 r12537 45 45 private final OsmDataLayer layer; 46 46 private final Projection projection; 47 private static final boolean skipEmptyNodes= true;47 private static final boolean SKIP_EMPTY_NODES = true; 48 48 49 49 /** … … 165 165 if (p.isIncomplete()) { 166 166 return; 167 } else if ( skipEmptyNodes&& p instanceof Node && p.getKeys().isEmpty()) {167 } else if (SKIP_EMPTY_NODES && p instanceof Node && p.getKeys().isEmpty()) { 168 168 return; 169 169 }
Note:
See TracChangeset
for help on using the changeset viewer.
