Index: /applications/editors/josm/plugins/agpifoj/build.xml
===================================================================
--- /applications/editors/josm/plugins/agpifoj/build.xml	(revision 17706)
+++ /applications/editors/josm/plugins/agpifoj/build.xml	(revision 17707)
@@ -34,5 +34,5 @@
                 <attribute name="Plugin-Early" value="false"/>
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/AgPifoJ"/>
-                <attribute name="Plugin-Mainversion" value="2081"/>
+                <attribute name="Plugin-Mainversion" value="2166"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: /applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/SimplifyWay.java
===================================================================
--- /applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/SimplifyWay.java	(revision 17706)
+++ /applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/SimplifyWay.java	(revision 17707)
@@ -36,9 +36,9 @@
             backRefsV.visit(wnew.getNode(i));
             boolean used = false;
-            if (backRefsV.data.size() == 1) {
+            if (backRefsV.getData().size() == 1) {
                 used = Collections.frequency(w.getNodes(), wnew.getNode(i)) > 1;
             } else {
-                backRefsV.data.remove(w);
-                used = !backRefsV.data.isEmpty();
+                backRefsV.getData().remove(w);
+                used = !backRefsV.getData().isEmpty();
             }
             if (!used)
Index: /applications/editors/josm/plugins/osmarender/build.xml
===================================================================
--- /applications/editors/josm/plugins/osmarender/build.xml	(revision 17706)
+++ /applications/editors/josm/plugins/osmarender/build.xml	(revision 17707)
@@ -26,5 +26,5 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/>
-                <attribute name="Plugin-Mainversion" value="2067"/>
+                <attribute name="Plugin-Mainversion" value="2166"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: /applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
===================================================================
--- /applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java	(revision 17706)
+++ /applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java	(revision 17707)
@@ -60,13 +60,13 @@
                 }
             }
-            for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.data)) {
+            for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.getData())) {
                 if (p instanceof Way) {
                     for (Node n : ((Way) p).getNodes()) {
                         if (n.getCoor().isWithin(b))
-                            backRefsV.data.add(n);
+                            backRefsV.getData().add(n);
                     }
                 }
             }
-            for (OsmPrimitive p : backRefsV.data)
+            for (OsmPrimitive p : backRefsV.getData())
                 fromDataSet.addPrimitive(p);
 
Index: /applications/editors/josm/plugins/terracer/build.xml
===================================================================
--- /applications/editors/josm/plugins/terracer/build.xml	(revision 17706)
+++ /applications/editors/josm/plugins/terracer/build.xml	(revision 17707)
@@ -26,5 +26,5 @@
                 <attribute name="Plugin-Description" value="Make terraced houses out of single blocks."/>
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Terracer"/>
-                <attribute name="Plugin-Mainversion" value="2082"/>
+                <attribute name="Plugin-Mainversion" value="2166"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: /applications/editors/josm/plugins/terracer/src/terracer/ReverseTerraceAction.java
===================================================================
--- /applications/editors/josm/plugins/terracer/src/terracer/ReverseTerraceAction.java	(revision 17706)
+++ /applications/editors/josm/plugins/terracer/src/terracer/ReverseTerraceAction.java	(revision 17707)
@@ -86,5 +86,5 @@
 					CollectBackReferencesVisitor v = new CollectBackReferencesVisitor(Main.main.getCurrentDataSet());
 					v.visit(n);
-					for (OsmPrimitive prim : v.data) {
+					for (OsmPrimitive prim : v.getData()) {
 						if (prim.keySet().contains("building") && prim instanceof Way) {
 							front.add((Way)prim);
Index: /applications/editors/josm/plugins/utilsplugin/build.xml
===================================================================
--- /applications/editors/josm/plugins/utilsplugin/build.xml	(revision 17706)
+++ /applications/editors/josm/plugins/utilsplugin/build.xml	(revision 17707)
@@ -25,5 +25,5 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/>
-                <attribute name="Plugin-Mainversion" value="2082"/>
+                <attribute name="Plugin-Mainversion" value="2166"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: /applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java
===================================================================
--- /applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java	(revision 17706)
+++ /applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java	(revision 17707)
@@ -111,9 +111,9 @@
             backRefsV.visit(wnew.getNode(i));
             boolean used = false;
-            if (backRefsV.data.size() == 1) {
+            if (backRefsV.getData().size() == 1) {
                 used = Collections.frequency(w.getNodes(), wnew.getNode(i)) > 1;
             } else {
-                backRefsV.data.remove(w);
-                used = !backRefsV.data.isEmpty();
+                backRefsV.getData().remove(w);
+                used = !backRefsV.getData().isEmpty();
             }
             if (!used)
