Changeset 19208 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2024-09-05T18:15:17+02:00 (4 months ago)
Author:
taylor.smock
Message:

Dependency updates:

ivy.xml:

  • jmapviewer: 2.21 -> 2.22: Fix a NumberFormatException (fix #23888)
  • commons-compress: 1.27.0 -> 1.27.1
  • tag2link: 2024.8.12 -> 2024.8.21
  • commons-lang3: 3.16.0 -> 3.17.0
  • classgraph: 4.8.174 -> 4.8.175
  • junit: 5.10.3 -> 5.11.0: Repeatable @..Source annotations for parameterized tests
  • equalsverifier: 3.16.1 -> 3.16.2

tools/ivy.xml:

  • checkstyle: 10.17 -> 10.18: Better support for Java 21
  • pmd: 7.4.0 -> 7.5.0
  • errorprone: 2.30.0 -> 2.31.0: Note: this is the last planned release that supports running on Java 11.
Location:
trunk/src/org/openstreetmap/josm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/vectortile/mapbox/style/Layers.java

    r19108 r19208  
    8989     */
    9090    public Layers(final JsonObject layerInfo) {
    91         this (null, layerInfo);
     91        this(null, layerInfo);
    9292    }
    9393
  • trunk/src/org/openstreetmap/josm/gui/widgets/UrlLabel.java

    r18211 r19208  
    3838     */
    3939    public UrlLabel(String url) {
    40         this (url, url, 0);
     40        this(url, url, 0);
    4141    }
    4242
     
    4747     */
    4848    public UrlLabel(String url, int fontPlus) {
    49         this (url, url, fontPlus);
     49        this(url, url, fontPlus);
    5050    }
    5151
     
    5656     */
    5757    public UrlLabel(String url, String description) {
    58         this (url, description, 0);
     58        this(url, description, 0);
    5959    }
    6060
  • trunk/src/org/openstreetmap/josm/tools/Tag2Link.java

    r19191 r19208  
    3636/**
    3737 * Extracts web links from OSM tags.
    38  *
     38 * <p>
    3939 * The following rules are used:
    4040 * <ul>
     
    6565
    6666    static final ListProperty PREF_SOURCE = new ListProperty("tag2link.source",
    67             Collections.singletonList("resource://META-INF/resources/webjars/tag2link/2024.8.12/index.json"));
     67            Collections.singletonList("resource://META-INF/resources/webjars/tag2link/2024.8.21/index.json"));
    6868
    6969    static final CachingProperty<List<String>> PREF_SEARCH_ENGINES = new ListProperty("tag2link.search",
Note: See TracChangeset for help on using the changeset viewer.