Skip to content
Snippets Groups Projects
Commit db7501ff authored by Ryan Izard's avatar Ryan Izard
Browse files

Removed throwing NotImplementedException to get rid of compile error.

parent 5ebf8b1d
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,6 @@ import org.projectfloodlight.openflow.types.TableId;
import org.projectfloodlight.openflow.types.U64;
import org.slf4j.Logger;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
/**
* Convert OFInstructions to and from dpctl/ofctl-style strings.
* Used primarily by the static flow pusher to store and retreive
......@@ -322,8 +320,9 @@ public class InstructionUtils {
* @param instStr; The string to parse the instruction from
* @param log
*/
public static void experimenterFromString(OFFlowMod.Builder fmb, String inst, Logger log) throws NotImplementedException {
throw new NotImplementedException();
public static void experimenterFromString(OFFlowMod.Builder fmb, String inst, Logger log) {
/* TODO This is a no-op right now. */
/*
if (inst == null || inst.equals("")) {
return; // TODO @Ryan quietly fail?
......
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