Fix Javadoc warning about IOException throws
Change-Id: I65d7b37da0a30a1f56640eec65a43f12e723f8f2
Showing
1 changed file
with
1 additions
and
2 deletions
| ... | @@ -376,11 +376,10 @@ public class OFSwitchImplSpringOpenTTP extends AbstractOpenFlowSwitch { | ... | @@ -376,11 +376,10 @@ public class OFSwitchImplSpringOpenTTP extends AbstractOpenFlowSwitch { |
| 376 | * @param tableToSend the table to send as per the GOTO_TABLE instruction it | 376 | * @param tableToSend the table to send as per the GOTO_TABLE instruction it |
| 377 | * needs to be set if 'toTable' is true. Ignored of 'toTable' is | 377 | * needs to be set if 'toTable' is true. Ignored of 'toTable' is |
| 378 | * false. | 378 | * false. |
| 379 | - * @throws IOException | ||
| 380 | */ | 379 | */ |
| 381 | protected void populateTableMissEntry(int tableToAdd, boolean toControllerNow, | 380 | protected void populateTableMissEntry(int tableToAdd, boolean toControllerNow, |
| 382 | boolean toControllerWrite, | 381 | boolean toControllerWrite, |
| 383 | - boolean toTable, int tableToSend) throws IOException { | 382 | + boolean toTable, int tableToSend) { |
| 384 | OFOxmList oxmList = OFOxmList.EMPTY; | 383 | OFOxmList oxmList = OFOxmList.EMPTY; |
| 385 | OFMatchV3 match = factory.buildMatchV3() | 384 | OFMatchV3 match = factory.buildMatchV3() |
| 386 | .setOxmList(oxmList) | 385 | .setOxmList(oxmList) | ... | ... |
-
Please register or login to post a comment