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

Merge pull request #752 from AmanYang/patch-1

Fix bug for ActionUtils.java
parents 093c41bf 95bbff8a
No related branches found
No related tags found
No related merge requests found
...@@ -208,6 +208,7 @@ public class ActionUtils { ...@@ -208,6 +208,7 @@ public class ActionUtils {
break; break;
case SET_QUEUE: case SET_QUEUE:
sb.append(STR_QUEUE_SET).append("=").append(Long.toString(((OFActionSetQueue)a).getQueueId())); sb.append(STR_QUEUE_SET).append("=").append(Long.toString(((OFActionSetQueue)a).getQueueId()));
break;
case SET_DL_SRC: case SET_DL_SRC:
sb.append(STR_DL_SRC_SET).append("=").append( ((OFActionSetDlSrc)a).getDlAddr().toString()); sb.append(STR_DL_SRC_SET).append("=").append( ((OFActionSetDlSrc)a).getDlAddr().toString());
break; break;
...@@ -1369,4 +1370,4 @@ public class ActionUtils { ...@@ -1369,4 +1370,4 @@ public class ActionUtils {
return null; return null;
} }
} }
} }
\ No newline at end of file
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