- Timestamp:
- 2021-07-11T00:49:02+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/vectortile/mapbox/style/MapboxVectorStyle.java
r17968 r17990 282 282 return Objects.hash(this.name, this.version, this.glyphUrl, this.spriteUrl, this.sources); 283 283 } 284 285 @Override 286 public String toString() { 287 return "MapboxVectorStyle [version=" + version + ", " + (name != null ? "name=" + name + ", " : "") 288 + (spriteUrl != null ? "spriteUrl=" + spriteUrl + ", " : "") 289 + (glyphUrl != null ? "glyphUrl=" + glyphUrl + ", " : "") 290 + (sources != null ? "sources=" + sources : "") + "]"; 291 } 284 292 }
Note:
See TracChangeset
for help on using the changeset viewer.