Changeset 15020 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2019-04-26T07:06:30+02:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/gpx/GpxConstants.java
r15018 r15020 163 163 * Possible fix values. NMEA 0183 Version 4.00 164 164 */ 165 Collection<String> FIX_VALUES = Collections.unmodifiableList(Arrays.asList("none", "2d", "3d", "dgps", "pps","rtk", "float rtk", "estimated", "manual", "simulated")); 165 Collection<String> FIX_VALUES = Collections.unmodifiableList( 166 Arrays.asList("none", "2d", "3d", "dgps", "pps", "rtk", "float rtk", "estimated", "manual", "simulated")); 166 167 } -
trunk/src/org/openstreetmap/josm/gui/preferences/server/OsmApiUrlInputPanel.java
r15009 r15020 167 167 /** 168 168 * Returns the entered API URL, stripped of leading and trailing white characters. 169 * @return the entered API URL, stripped of leading and trailing white characters. 170 * May be an empty stringif nothing has been entered. In this case, it means the user wants to use {@link IUrls#getDefaultOsmApiUrl}.169 * @return the entered API URL, stripped of leading and trailing white characters. May be an empty string 170 * if nothing has been entered. In this case, it means the user wants to use {@link IUrls#getDefaultOsmApiUrl}. 171 171 * @see Utils#strip(String) 172 172 * @since 6602
Note:
See TracChangeset
for help on using the changeset viewer.