Index: /applications/editors/josm/plugins/routes/build.xml
===================================================================
--- /applications/editors/josm/plugins/routes/build.xml	(revision 17379)
+++ /applications/editors/josm/plugins/routes/build.xml	(revision 17380)
@@ -35,5 +35,5 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Renders routes (bus, hiking trails, bicycle routes, ..). Route types must be defined in routes.xml file in plugin directory"/>
-                <attribute name="Plugin-Mainversion" value="1815"/>
+                <attribute name="Plugin-Mainversion" value="2012"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: /applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/ConvertedWay.java
===================================================================
--- /applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/ConvertedWay.java	(revision 17379)
+++ /applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/ConvertedWay.java	(revision 17380)
@@ -48,5 +48,5 @@
 	public ConvertedWay(BitSet routes, Way way) {
 		this.routes = routes;
-		nodes.addAll(way.nodes);
+		nodes.addAll(way.getNodes());
 	}
 	
Index: /applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/PathBuilder.java
===================================================================
--- /applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/PathBuilder.java	(revision 17379)
+++ /applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/PathBuilder.java	(revision 17380)
@@ -18,5 +18,5 @@
 	public void addWay(Way way, RouteDefinition route) {
 
-		if (way.nodes.size() >= 2) {
+		if (way.getNodesCount() >= 2) {
 			BitSet routes = wayRoutes.get(way);
 			if (routes == null) {
