- Timestamp:
- 2023-05-30T18:08:05+02:00 (18 months ago)
- 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 627 627 628 628 ArrayList<String> refs = new ArrayList<String>(); 629 if (colored == ColorMode.REF) {629 if (colored == ColorMode.REF) { 630 630 for (Line segment : getLinesIterable(null)) { 631 631 for (WayPoint trkPnt : segment) { … … 633 633 String refval = trkPnt.get(GpxConstants.PT_DGPSID).toString(); 634 634 int i = refs.indexOf(refval); 635 if (i < 0) {635 if (i < 0) { 636 636 refs.add(refval); 637 637 } … … 639 639 } 640 640 } 641 if (refs.size() > 0) {641 if (refs.size() > 0) { 642 642 Collections.sort(refs); 643 643 String[] a = {}; -
trunk/src/org/openstreetmap/josm/io/nmea/NmeaReader.java
r18741 r18742 433 433 } 434 434 // reference ID 435 if (GGA.REF.position < e.length) {435 if (GGA.REF.position < e.length) { 436 436 accu = e[GGA.REF.position]; 437 437 if (!accu.isEmpty()) {
Note:
See TracChangeset
for help on using the changeset viewer.