Changeset 18742 in josm for trunk/src


Ignore:
Timestamp:
2023-05-30T18:08:05+02:00 (18 months ago)
Author:
stoecker
Message:

ckeckstyle

Location:
trunk/src/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/gpx/GpxDrawHelper.java

    r18738 r18742  
    627627
    628628        ArrayList<String> refs = new ArrayList<String>();
    629         if(colored == ColorMode.REF) {
     629        if (colored == ColorMode.REF) {
    630630            for (Line segment : getLinesIterable(null)) {
    631631                for (WayPoint trkPnt : segment) {
     
    633633                        String refval = trkPnt.get(GpxConstants.PT_DGPSID).toString();
    634634                        int i = refs.indexOf(refval);
    635                         if(i < 0) {
     635                        if (i < 0) {
    636636                            refs.add(refval);
    637637                        }
     
    639639                }
    640640            }
    641             if(refs.size() > 0) {
     641            if (refs.size() > 0) {
    642642                Collections.sort(refs);
    643643                String[] a = {};
  • trunk/src/org/openstreetmap/josm/io/nmea/NmeaReader.java

    r18741 r18742  
    433433                }
    434434                // reference ID
    435                 if(GGA.REF.position < e.length) {
     435                if (GGA.REF.position < e.length) {
    436436                    accu = e[GGA.REF.position];
    437437                    if (!accu.isEmpty()) {
Note: See TracChangeset for help on using the changeset viewer.