Skip to content
Snippets Groups Projects
Commit 49d455c8 authored by Srinivasan Ramasubramanian's avatar Srinivasan Ramasubramanian Committed by Saurav Das
Browse files

Remove unused methods.

parent 15712fdf
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,6 @@
package net.floodlightcontroller.core.internal;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openflow.protocol.statistics.OFDescriptionStatistics;
......@@ -45,9 +43,4 @@ public class OFSwitchImpl extends OFSwitchBase {
public boolean isFastPort(short port_num) {
return false;
}
@Override
public List<Short> getUplinkPorts() {
return null;
}
}
......@@ -92,12 +92,6 @@ public class OFSwitchBaseTest {
return false;
}
@Override
public List<Short> getUplinkPorts() {
// TODO Auto-generated method stub
return null;
}
@Override
public void write(OFMessage msg, FloodlightContext cntx) {
blockMessage = msg;
......
......@@ -385,12 +385,6 @@ public class OFMessageDamperMockSwitch implements IOFSwitch {
return false;
}
@Override
public List<Short> getUplinkPorts() {
fail("Unexpected method call");
return null;
}
@Override
public boolean attributeEquals(String name, Object other) {
fail("Unexpected method call");
......
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