Changeset 8950 in josm for trunk/src/org/openstreetmap/josm
- Timestamp:
- 2015-10-26T01:35:06+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java
r8882 r8950 550 550 */ 551 551 static boolean connection(Environment e) { 552 return e.osm instanceof Node && ((Node) e.osm).isConnectionNode(); 552 return e.osm instanceof Node && e.osm.getDataSet() != null && ((Node) e.osm).isConnectionNode(); 553 553 } 554 554
Note:
See TracChangeset
for help on using the changeset viewer.