- Timestamp:
- 2025-02-14T11:38:27+01:00 (10 days ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Preferences.java
r19316 r19321 96 96 /** keep subkey even if it starts with any of {@link #OBSOLETE_PREF_KEYS_START} */ 97 97 private static final List<String> KEEP_PREF_KEYS = Arrays.asList( 98 98 // nothing ATM 99 99 ); 100 100 -
trunk/src/org/openstreetmap/josm/data/coor/LatLon.java
r19319 r19321 9 9 10 10 import org.openstreetmap.josm.data.Bounds; 11 import org.openstreetmap.josm.data.osm.Node;12 import org.openstreetmap.josm.data.projection.ProjectionRegistry;13 11 import org.openstreetmap.josm.tools.Utils; 14 12 -
trunk/src/org/openstreetmap/josm/data/gpx/WayPoint.java
r19320 r19321 5 5 import java.time.Instant; 6 6 import java.util.ArrayList; 7 import java.util.Date;8 7 import java.util.HashMap; 9 8 import java.util.List; -
trunk/src/org/openstreetmap/josm/data/osm/history/HistoryOsmPrimitive.java
r19320 r19321 8 8 import java.util.Collection; 9 9 import java.util.Collections; 10 import java.util.Date;11 10 import java.util.HashMap; 12 11 import java.util.Locale; -
trunk/src/org/openstreetmap/josm/data/protobuf/ProtobufPacked.java
r19320 r19321 2 2 package org.openstreetmap.josm.data.protobuf; 3 3 4 import java.io.ByteArrayOutputStream;5 4 import java.util.Arrays; 6 5 -
trunk/src/org/openstreetmap/josm/gui/io/importexport/GeoJSONImporter.java
r19320 r19321 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 5 6 import java.io.IOException;7 6 import java.io.InputStream; 8 7 import java.util.Arrays; … … 10 9 import org.openstreetmap.josm.actions.ExtensionFileFilter; 11 10 import org.openstreetmap.josm.data.osm.DataSet; 12 import org.openstreetmap.josm.gui.progress.NullProgressMonitor;13 11 import org.openstreetmap.josm.gui.progress.ProgressMonitor; 14 import org.openstreetmap.josm.io.CachedFile;15 import org.openstreetmap.josm.io.Compression;16 12 import org.openstreetmap.josm.io.GeoJSONReader; 17 13 import org.openstreetmap.josm.io.IllegalDataException; -
trunk/src/org/openstreetmap/josm/gui/mappaint/MapPaintStyles.java
r19320 r19321 13 13 import javax.swing.SwingUtilities; 14 14 15 import org.openstreetmap.josm.data.osm.OsmPrimitiveType;16 import org.openstreetmap.josm.data.osm.Tag;17 15 import org.openstreetmap.josm.data.preferences.sources.MapPaintPrefHelper; 18 16 import org.openstreetmap.josm.data.preferences.sources.SourceEntry; … … 27 25 import org.openstreetmap.josm.tools.ListenerList; 28 26 import org.openstreetmap.josm.tools.Logging; 29 import org.openstreetmap.josm.tools.OsmPrimitiveImageProvider;30 27 import org.openstreetmap.josm.tools.Stopwatch; 31 28 import org.openstreetmap.josm.tools.Utils; -
trunk/src/org/openstreetmap/josm/gui/preferences/display/GPXSettingsPanel.java
r19316 r19321 68 68 private final JCheckBox largeGpsPoints = new JCheckBox(tr("Draw large GPS points")); 69 69 private final JCheckBox circleGpsPoints = new JCheckBox(tr("Draw a circle from value")); 70 private final JComboBox<String> circleDataSource = new JosmComboBox<>(new String[] {tr("Hdop"), tr("Horizontal deviation estimate"), tr("Age of correction data")}); 70 private final JComboBox<String> circleDataSource = new JosmComboBox<>(new String[] { 71 tr("Hdop"), 72 tr("Horizontal deviation estimate"), 73 tr("Age of correction data")}); 71 74 private final JRadioButton colorTypeVelocity = new JRadioButton(tr("Velocity (red = slow, green = fast)")); 72 75 private final JRadioButton colorTypeDirection = new JRadioButton(tr("Direction (red = west, yellow = north, green = east, blue = south)")); … … 425 428 426 429 // circleGpsPoints 427 circleGpsPoints.addItemListener(e -> {circleDataSource.setEnabled(circleGpsPoints.isSelected());}); 430 circleGpsPoints.addItemListener(e -> { 431 circleDataSource.setEnabled(circleGpsPoints.isSelected()); 432 }); 428 433 circleGpsPoints.setToolTipText(tr("Draw a circle from value")); 429 434 circleDataSource.setToolTipText(tr("Source of the circle size")); -
trunk/test/unit/org/openstreetmap/josm/io/nmea/NmeaReaderTest.java
r19316 r19321 63 63 assertNull(wayPoints.get(0).get(GpxConstants.PT_PDOP)); 64 64 } 65 65 66 /** 66 67 * Tests reading a nmea file with GST sentences.
Note:
See TracChangeset
for help on using the changeset viewer.