Changeset 1254 in josm for trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
- Timestamp:
- 11.01.2009 20:11:07 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r1214 r1254 19 19 import org.openstreetmap.josm.tools.DateParser; 20 20 import org.openstreetmap.josm.Main; 21 import org.openstreetmap.josm.gui.mappaint.ElemStyle; 21 22 22 23 … … 139 140 private static Collection<String> directionKeys = null; 140 141 142 143 /* mappaint style cache */ 144 public ElemStyle mappaintStyle = null; 145 public boolean isMappaintArea = false; 146 141 147 /** 142 148 * Implementation of the visitor scheme. Subclasses have to call the correct … … 214 220 checkTagged(); 215 221 checkDirectionTagged(); 222 mappaintStyle = null; 216 223 } 217 224 /** … … 226 233 checkTagged(); 227 234 checkDirectionTagged(); 235 mappaintStyle = null; 228 236 } 229 237 … … 262 270 tagged = osm.tagged; 263 271 incomplete = osm.incomplete; 272 mappaintStyle = null; 264 273 } 265 274
Note: See TracChangeset
for help on using the changeset viewer.
