Changeset 17707 in osm for applications/editors/josm
- Timestamp:
- 2009-09-20T11:17:58+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/agpifoj/build.xml
r17526 r17707 34 34 <attribute name="Plugin-Early" value="false"/> 35 35 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/AgPifoJ"/> 36 <attribute name="Plugin-Mainversion" value="2 081"/>36 <attribute name="Plugin-Mainversion" value="2166"/> 37 37 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 38 38 </manifest> -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/SimplifyWay.java
r17365 r17707 36 36 backRefsV.visit(wnew.getNode(i)); 37 37 boolean used = false; 38 if (backRefsV. data.size() == 1) {38 if (backRefsV.getData().size() == 1) { 39 39 used = Collections.frequency(w.getNodes(), wnew.getNode(i)) > 1; 40 40 } else { 41 backRefsV. data.remove(w);42 used = !backRefsV. data.isEmpty();41 backRefsV.getData().remove(w); 42 used = !backRefsV.getData().isEmpty(); 43 43 } 44 44 if (!used) -
applications/editors/josm/plugins/osmarender/build.xml
r17518 r17707 26 26 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 27 27 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/> 28 <attribute name="Plugin-Mainversion" value="2 067"/>28 <attribute name="Plugin-Mainversion" value="2166"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
r17518 r17707 60 60 } 61 61 } 62 for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV. data)) {62 for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.getData())) { 63 63 if (p instanceof Way) { 64 64 for (Node n : ((Way) p).getNodes()) { 65 65 if (n.getCoor().isWithin(b)) 66 backRefsV. data.add(n);66 backRefsV.getData().add(n); 67 67 } 68 68 } 69 69 } 70 for (OsmPrimitive p : backRefsV. data)70 for (OsmPrimitive p : backRefsV.getData()) 71 71 fromDataSet.addPrimitive(p); 72 72 -
applications/editors/josm/plugins/terracer/build.xml
r17546 r17707 26 26 <attribute name="Plugin-Description" value="Make terraced houses out of single blocks."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Terracer"/> 28 <attribute name="Plugin-Mainversion" value="2 082"/>28 <attribute name="Plugin-Mainversion" value="2166"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/terracer/src/terracer/ReverseTerraceAction.java
r17388 r17707 86 86 CollectBackReferencesVisitor v = new CollectBackReferencesVisitor(Main.main.getCurrentDataSet()); 87 87 v.visit(n); 88 for (OsmPrimitive prim : v. data) {88 for (OsmPrimitive prim : v.getData()) { 89 89 if (prim.keySet().contains("building") && prim instanceof Way) { 90 90 front.add((Way)prim); -
applications/editors/josm/plugins/utilsplugin/build.xml
r17550 r17707 25 25 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 26 26 <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/> 27 <attribute name="Plugin-Mainversion" value="2 082"/>27 <attribute name="Plugin-Mainversion" value="2166"/> 28 28 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 29 29 </manifest> -
applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java
r17361 r17707 111 111 backRefsV.visit(wnew.getNode(i)); 112 112 boolean used = false; 113 if (backRefsV. data.size() == 1) {113 if (backRefsV.getData().size() == 1) { 114 114 used = Collections.frequency(w.getNodes(), wnew.getNode(i)) > 1; 115 115 } else { 116 backRefsV. data.remove(w);117 used = !backRefsV. data.isEmpty();116 backRefsV.getData().remove(w); 117 used = !backRefsV.getData().isEmpty(); 118 118 } 119 119 if (!used)
Note:
See TracChangeset
for help on using the changeset viewer.