Ignore:
Timestamp:
2017-07-30T00:22:46+02:00 (9 years ago)
Author:
Don-vip
Message:

PMD - VariableNamingConventions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/GeoJSONWriter.java

    r12439 r12537  
    4545    private final OsmDataLayer layer;
    4646    private final Projection projection;
    47     private static final boolean skipEmptyNodes = true;
     47    private static final boolean SKIP_EMPTY_NODES = true;
    4848
    4949    /**
     
    165165        if (p.isIncomplete()) {
    166166            return;
    167         } else if (skipEmptyNodes && p instanceof Node && p.getKeys().isEmpty()) {
     167        } else if (SKIP_EMPTY_NODES && p instanceof Node && p.getKeys().isEmpty()) {
    168168            return;
    169169        }
Note: See TracChangeset for help on using the changeset viewer.