Changeset 19208 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2024-09-05T18:15:17+02:00 (4 months ago)
- 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 89 89 */ 90 90 public Layers(final JsonObject layerInfo) { 91 this 91 this(null, layerInfo); 92 92 } 93 93 -
trunk/src/org/openstreetmap/josm/gui/widgets/UrlLabel.java
r18211 r19208 38 38 */ 39 39 public UrlLabel(String url) { 40 this 40 this(url, url, 0); 41 41 } 42 42 … … 47 47 */ 48 48 public UrlLabel(String url, int fontPlus) { 49 this 49 this(url, url, fontPlus); 50 50 } 51 51 … … 56 56 */ 57 57 public UrlLabel(String url, String description) { 58 this 58 this(url, description, 0); 59 59 } 60 60 -
trunk/src/org/openstreetmap/josm/tools/Tag2Link.java
r19191 r19208 36 36 /** 37 37 * Extracts web links from OSM tags. 38 * 38 * <p> 39 39 * The following rules are used: 40 40 * <ul> … … 65 65 66 66 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")); 68 68 69 69 static final CachingProperty<List<String>> PREF_SEARCH_ENGINES = new ListProperty("tag2link.search",
Note:
See TracChangeset
for help on using the changeset viewer.