Index: /applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingGraph.java
===================================================================
--- /applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingGraph.java	(revision 34186)
+++ /applications/editors/josm/plugins/routing/src/com/innovant/josm/jrt/core/RoutingGraph.java	(revision 34187)
@@ -13,5 +13,4 @@
 import org.jgrapht.alg.DijkstraShortestPath;
 import org.jgrapht.graph.DirectedWeightedMultigraph;
-import org.openstreetmap.josm.data.coor.LatLon;
 import org.openstreetmap.josm.data.osm.DataSet;
 import org.openstreetmap.josm.data.osm.Node;
@@ -219,7 +218,5 @@
      */
     private void addEdge(Way way, Node from, Node to) {
-        LatLon fromLL = from.getCoor();
-        LatLon toLL = from.getCoor();
-        if (fromLL == null || toLL == null) {
+        if (!from.isLatLonKnown() || !to.isLatLonKnown()) {
             return;
         }
