Modify ↓
Opened 11 years ago
Closed 11 years ago
#7758 closed defect (fixed)
building inside building test
Reported by: | anonymous | Owned by: | team |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | Core validator | Version: | |
Keywords: | Cc: |
Description
- it took too many time, even if there's no buildings.
- it checks only buildings with "building=yes" (i suppose it should checking everything what have tag "building", except "building=no")
Attachments (0)
Change History (4)
comment:1 Changed 11 years ago by
Component: | Core → Core validator |
---|
comment:2 Changed 11 years ago by
comment:3 Changed 11 years ago by
...
private static boolean isBuilding(OsmPrimitive p) { String v = p.get("building"); return v != null && !v.equals("no") && !v.equals("entrance"); }
Note: See
TracTickets for help on using
tickets.
building=entrance
.