Changeset 16517 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2020-05-29T19:56:50+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/OSMDownloadSource.java
r16504 r16517 304 304 * 305 305 * @return true if the user selected to download OSM data 306 * @deprecated since xxx-- use {@code getDownloadType(OsmDataDownloadType.class).getCheckBox().isSelected()}306 * @deprecated since 16503 -- use {@code getDownloadType(OsmDataDownloadType.class).getCheckBox().isSelected()} 307 307 */ 308 308 @Deprecated … … 315 315 * 316 316 * @return true if the user selected to download GPX data 317 * @deprecated since xxx-- use {@code getDownloadType(GpsDataDownloadType.class).getCheckBox().isSelected()}317 * @deprecated since 16503 -- use {@code getDownloadType(GpsDataDownloadType.class).getCheckBox().isSelected()} 318 318 */ 319 319 @Deprecated … … 326 326 * 327 327 * @return true if user selected to download notes 328 * @deprecated since xxx-- use {@code getDownloadType(NotesDataDownloadType.class).getCheckBox().isSelected()}328 * @deprecated since 16503 -- use {@code getDownloadType(NotesDataDownloadType.class).getCheckBox().isSelected()} 329 329 */ 330 330 @Deprecated -
trunk/src/org/openstreetmap/josm/spi/preferences/Config.java
r14119 r16517 67 67 * Install the global URLs provider. 68 68 * @param urls the global URLs provider instance to set (must not be null) 69 * @since xx69 * @since 14119 70 70 */ 71 71 public static void setUrlsProvider(IUrls urls) { -
trunk/src/org/openstreetmap/josm/tools/StreamUtils.java
r16436 r16517 65 65 * @return a new Collector that collects the items in an unmodifiable list 66 66 * @see Utils#toUnmodifiableList 67 * @since xxx67 * @since 16436 68 68 */ 69 69 public static <T> Collector<T, ?, List<T>> toUnmodifiableList() {
Note:
See TracChangeset
for help on using the changeset viewer.