Skip to content
Snippets Groups Projects
Commit dbadec24 authored by Jamie Bird's avatar Jamie Bird Committed by GitHub
Browse files

Fixed small syntax mistake in README

parent 00e1d944
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ To best demonstrate the extent to which constructing and working with OpenFlow c ...@@ -59,7 +59,7 @@ To best demonstrate the extent to which constructing and working with OpenFlow c
**Floodlight v1.0, v1.1, v1.2 -- the new and improved way to compose an OFFlowMod** **Floodlight v1.0, v1.1, v1.2 -- the new and improved way to compose an OFFlowMod**
ArrayList<OFAction> actions = new ArrayList<OFAction(); ArrayList<OFAction> actions = new ArrayList<OFAction>();
actions.add(myFactory.actions().buildOutput() // builder pattern used throughout actions.add(myFactory.actions().buildOutput() // builder pattern used throughout
.setPort(OFPort.of(1)) // raw types replaced with objects for type-checking and readability .setPort(OFPort.of(1)) // raw types replaced with objects for type-checking and readability
.build()); // list of immutable OFAction objects .build()); // list of immutable OFAction objects
......
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