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

Merge pull request #474 from rizard/master

Last minute optimizations.
parents e2e7a97e db7501ff
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