Index: applications/editors/josm/plugins/michigan_left/.classpath
===================================================================
--- applications/editors/josm/plugins/michigan_left/.classpath	(revision 22287)
+++ applications/editors/josm/plugins/michigan_left/.classpath	(revision 22290)
@@ -2,6 +2,6 @@
 <classpath>
 	<classpathentry kind="src" path="src"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JDK 5"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/core"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="output" path="bin"/>
 </classpath>
Index: applications/editors/josm/plugins/michigan_left/src/MichiganLeft/MichiganLeft.java
===================================================================
--- applications/editors/josm/plugins/michigan_left/src/MichiganLeft/MichiganLeft.java	(revision 22287)
+++ applications/editors/josm/plugins/michigan_left/src/MichiganLeft/MichiganLeft.java	(revision 22290)
@@ -41,5 +41,9 @@
     
     private class MichiganLeftAction extends JosmAction {
-        private LinkedList<Command> cmds = new LinkedList<Command>();
+        /**
+		 * 
+		 */
+		private static final long serialVersionUID = 1L;
+		private LinkedList<Command> cmds = new LinkedList<Command>();
 
         public MichiganLeftAction() {
@@ -139,7 +143,7 @@
           ArrayList<Node> viaNodes=new ArrayList<Node>();
           // find via nodes (they have 3 occurences in the list)
-          for (Enumeration enumKey = ExtremNodes.keys() ; enumKey.hasMoreElements(); )
-          {
-            Node extrem=(Node)enumKey.nextElement();
+          for (Enumeration<Node> enumKey = ExtremNodes.keys() ; enumKey.hasMoreElements(); )
+          {
+            Node extrem=enumKey.nextElement();
             Integer nb=(Integer) ExtremNodes.get(extrem);
             //System.out.println(tr("Via node {0}, {1}", extrem.getId(), nb.intValue()));
