Changeset 11805 in josm


Ignore:
Timestamp:
2017-04-01T00:42:41+02:00 (7 years ago)
Author:
bastiK
Message:

see #14495 - add debugging output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/functional/org/openstreetmap/josm/gui/mappaint/StyleCacheTest.java

    r11781 r11805  
    123123                internPoolSize = newInternPoolSize;
    124124            } else {
     125                if (internPoolSize != newInternPoolSize) {
     126                    System.err.println("style sources:");
     127                    for (StyleSource s : MapPaintStyles.getStyles().getStyleSources()) {
     128                        System.err.println(s.url + " active:" + s.active);
     129                    }
     130                }
    125131                assertEquals("intern pool size", internPoolSize.intValue(), newInternPoolSize);
    126132            }
Note: See TracChangeset for help on using the changeset viewer.