Skip to content
Snippets Groups Projects
Commit 329badaf authored by Srinivasan Ramasubramanian's avatar Srinivasan Ramasubramanian
Browse files

Delete methods in IRoutingInterface that refer to switch objects. [It is also...

Delete methods in IRoutingInterface that refer to switch objects.  [It is also not  used anywhere in the code as of now.]
parent f084c36a
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,6 @@ import net.floodlightcontroller.routing.Route;
* @author David Erickson (daviderickson@cs.stanford.edu)
*/
public interface IRoutingEngineService extends IFloodlightService {
public Route getRoute(IOFSwitch src, IOFSwitch dst);
public Route getRoute(Long srcDpid, Long dstDpid);
......
......@@ -101,11 +101,6 @@ public class RoutingImpl
lock.writeLock().unlock();
}
@Override
public Route getRoute(IOFSwitch src, IOFSwitch dst) {
return getRoute(src.getId(), dst.getId());
}
@Override
public Route getRoute(Long srcId, Long dstId) {
lock.readLock().lock();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment