Index: applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/EdgeIterator.java
===================================================================
--- applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/EdgeIterator.java	(revision 22549)
+++ applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/EdgeIterator.java	(revision 23189)
@@ -4,5 +4,5 @@
 
     public boolean hasNext();
-    
+
     public RoutingEdge next();
 
Index: applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingEdge.java
===================================================================
--- applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingEdge.java	(revision 22549)
+++ applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingEdge.java	(revision 23189)
@@ -8,5 +8,5 @@
 
       public LatLon toLatLon();
-      
+
       public Object fromV();
 
@@ -14,13 +14,13 @@
 
       public double getLength();
-      
+
       public void setLength(double length);
-      
+
       public double getSpeed();
 
       public void setSpeed(double speed);
-      
+
       public boolean isOneway();
-      
+
       public void setOneway(boolean isOneway);
 
Index: applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingGraphDelegator.java
===================================================================
--- applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingGraphDelegator.java	(revision 22549)
+++ applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingGraphDelegator.java	(revision 23189)
@@ -1,4 +1,4 @@
 /**
- * 
+ *
  */
 package com.innovant.josm.jrt.core;
@@ -23,14 +23,14 @@
      */
     static Logger logger = Logger.getLogger(RoutingGraphDelegator.class);
-    
+
     /**
      *
      */
     private RouteType routeType;
-    
+
     public RoutingGraphDelegator(Graph<Node, OsmEdge> arg0) {
         super(arg0);
     }
-    
+
 
     public RouteType getRouteType() {
@@ -44,5 +44,5 @@
 
     /**
-     * 
+     *
      */
     private static final long serialVersionUID = 1L;
@@ -51,5 +51,5 @@
     public double getEdgeWeight(OsmEdge edge) {
         double weight=Double.MAX_VALUE;
-        
+
         if (routeType==RouteType.SHORTEST) weight=edge.getLength();
         if (routeType==RouteType.FASTEST) weight=edge.getLength() / edge.getSpeed();
Index: applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/osm/OsmEdge.java
===================================================================
--- applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/osm/OsmEdge.java	(revision 22549)
+++ applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/osm/OsmEdge.java	(revision 23189)
@@ -94,5 +94,5 @@
     return length;
   }
-  
+
   public void setLength(double length) {
     this.length = length;
