Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
floodlight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
croft1
floodlight
Commits
ad660c07
Commit
ad660c07
authored
10 years ago
by
Ryan Izard
Browse files
Options
Downloads
Plain Diff
Merge pull request #474 from rizard/master
Last minute optimizations.
parents
e2e7a97e
db7501ff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/net/floodlightcontroller/util/InstructionUtils.java
+3
-4
3 additions, 4 deletions
.../java/net/floodlightcontroller/util/InstructionUtils.java
with
3 additions
and
4 deletions
src/main/java/net/floodlightcontroller/util/InstructionUtils.java
+
3
−
4
View file @
ad660c07
...
...
@@ -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?
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment