Changeset 29778 in osm for applications/editors/josm/plugins/czechaddress
- Timestamp:
- 2013-07-25T21:57:38+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/czechaddress
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/czechaddress/build.xml
r29661 r29778 33 33 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/CS:JOSM/Plugins/CzechAddress"/> 34 34 <attribute name="Plugin-Icon" value="images/preferences/czech_flag.png"/> 35 <attribute name="Plugin-Mainversion" value="60 10"/>35 <attribute name="Plugin-Mainversion" value="6082"/> 36 36 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 37 37 </manifest> -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/CzechAddressPlugin.java
r29765 r29778 99 99 if (assertionsEnabled) initLoggers(); 100 100 101 MainMenu.add(Main.main.menu. toolsMenu, new SplitAreaByEmptyWayAction());101 MainMenu.add(Main.main.menu.moreToolsMenu, new SplitAreaByEmptyWayAction()); 102 102 103 103 // Prepare for filling the database. -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/actions/SplitAreaByEmptyWayAction.java
r29727 r29778 64 64 if (prim2.equals(area)) continue; 65 65 Way border = (Way) prim2; 66 if (border.getNodes(). size() == 0) continue;66 if (border.getNodes().isEmpty()) continue; 67 67 if (border.keySet().size() > 0) continue; 68 68 if (!area.getNodes().contains(border.firstNode())) continue;
Note:
See TracChangeset
for help on using the changeset viewer.