Index: /applications/editors/josm/plugins/lakewalker/build.xml
===================================================================
--- /applications/editors/josm/plugins/lakewalker/build.xml	(revision 17374)
+++ /applications/editors/josm/plugins/lakewalker/build.xml	(revision 17375)
@@ -26,5 +26,5 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Helps vectorizing WMS images." />
-                <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/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerAction.java
===================================================================
--- /applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerAction.java	(revision 17374)
+++ /applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerAction.java	(revision 17375)
@@ -254,5 +254,5 @@
 			  }
 
-			  way.nodes.add(n);
+			  way.addNode(n);
 
 			  if(nodesinway > Main.pref.getInteger(LakewalkerPreferences.PREF_MAX_SEG, 500)){
@@ -268,5 +268,5 @@
 				  way = new Way();
 
-				  way.nodes.add(n);
+				  way.addNode(n);
 
 				  nodesinway = 0;
@@ -284,5 +284,5 @@
 		  way.put("source", Main.pref.get(LakewalkerPreferences.PREF_SOURCE, "Landsat"));
 
-		  way.nodes.add(fn);
+		  way.addNode(fn);
 
 		  commands.add(new AddCommand(way));
Index: /applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerReader.java
===================================================================
--- /applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerReader.java	(revision 17374)
+++ /applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerReader.java	(revision 17375)
@@ -82,5 +82,5 @@
     						tn = null;
     					}
-    					way.nodes.add(n);
+    					way.addNode(n);
     					break;
     				case 's':
@@ -107,5 +107,5 @@
 
     			// Add the start node to the end of the trace to form a closed shape
-    			way.nodes.add(fn);
+    			way.addNode(fn);
     		}
     		catch (Exception ex) { }
