Changeset 16517 in josm for trunk


Ignore:
Timestamp:
2020-05-29T19:56:50+02:00 (4 years ago)
Author:
simon04
Message:

see #18340 - fix @since xxx

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

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/download/OSMDownloadSource.java

    r16504 r16517  
    304304         *
    305305         * @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()}
    307307         */
    308308        @Deprecated
     
    315315         *
    316316         * @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()}
    318318         */
    319319        @Deprecated
     
    326326         *
    327327         * @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()}
    329329         */
    330330        @Deprecated
  • trunk/src/org/openstreetmap/josm/spi/preferences/Config.java

    r14119 r16517  
    6767     * Install the global URLs provider.
    6868     * @param urls the global URLs provider instance to set (must not be null)
    69      * @since xx
     69     * @since 14119
    7070     */
    7171    public static void setUrlsProvider(IUrls urls) {
  • trunk/src/org/openstreetmap/josm/tools/StreamUtils.java

    r16436 r16517  
    6565     * @return a new Collector that collects the items in an unmodifiable list
    6666     * @see Utils#toUnmodifiableList
    67      * @since xxx
     67     * @since 16436
    6868     */
    6969    public static <T> Collector<T, ?, List<T>> toUnmodifiableList() {
Note: See TracChangeset for help on using the changeset viewer.