Changeset 17990 in josm for trunk/src


Ignore:
Timestamp:
2021-07-11T00:49:02+02:00 (4 years ago)
Author:
Don-vip
Message:

see #17177 - detailed errors for random unit test failures

File:
1 edited

Legend:

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

    r17968 r17990  
    282282        return Objects.hash(this.name, this.version, this.glyphUrl, this.spriteUrl, this.sources);
    283283    }
     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    }
    284292}
Note: See TracChangeset for help on using the changeset viewer.