Remove an edge between 2 nodes. This will delete the edge from one node to another but does not remove any return edge. To remove a 'bidirectional route' between nodes 22 and 33 then you must call this method twice e.g. graph.removeEdge(22, 33); graph.removeEdge(33, 22); @pa
(int fromID, int toID)