diff --git src/org/openstreetmap/josm/data/cache/CacheEntryAttributes.java src/org/openstreetmap/josm/data/cache/CacheEntryAttributes.java
index 5d4ae08..b792c94 100644
|
|
|
2 | 2 | package org.openstreetmap.josm.data.cache; |
3 | 3 | |
4 | 4 | import java.util.HashMap; |
5 | | import java.util.Map; |
6 | 5 | |
7 | 6 | import org.apache.commons.jcs.engine.ElementAttributes; |
8 | 7 | |
… |
… |
import org.apache.commons.jcs.engine.ElementAttributes;
|
14 | 13 | */ |
15 | 14 | public class CacheEntryAttributes extends ElementAttributes { |
16 | 15 | private static final long serialVersionUID = 1L; //version |
17 | | private transient Map<String, String> attrs = new HashMap<String, String>(); |
| 16 | private HashMap<String, String> attrs = new HashMap<String, String>(); // type needs to be HashMap to guarantee serialization and silence Sonar |
18 | 17 | private final static String NO_TILE_AT_ZOOM = "noTileAtZoom"; |
19 | 18 | private final static String ETAG = "Etag"; |
20 | 19 | private final static String LAST_MODIFICATION = "lastModification"; |