Ignore:
Timestamp:
2015-05-02T19:29:16+02:00 (9 years ago)
Author:
Don-vip
Message:

fix #11397 - NPE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/cache/CacheEntryAttributes.java

    r8308 r8313  
    1515public class CacheEntryAttributes extends ElementAttributes {
    1616    private static final long serialVersionUID = 1L; //version
    17     private transient Map<String, String> attrs = new HashMap<String, String>();
     17    private Map<String, String> attrs = new HashMap<String, String>();
    1818    private final static String NO_TILE_AT_ZOOM = "noTileAtZoom";
    1919    private final static String ETAG = "Etag";
     
    2121    private final static String EXPIRATION_TIME = "expirationTime";
    2222
     23    /**
     24     * Constructs a new {@code CacheEntryAttributes}.
     25     */
    2326    public CacheEntryAttributes() {
    2427        super();
Note: See TracChangeset for help on using the changeset viewer.