Fix Javadoc warning about IOException throws
Change-Id: I65d7b37da0a30a1f56640eec65a43f12e723f8f2
Showing
1 changed file
with
2 additions
and
3 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) |
... | @@ -572,4 +571,4 @@ public class OFSwitchImplSpringOpenTTP extends AbstractOpenFlowSwitch { | ... | @@ -572,4 +571,4 @@ public class OFSwitchImplSpringOpenTTP extends AbstractOpenFlowSwitch { |
572 | .build(); | 571 | .build(); |
573 | write(br); | 572 | write(br); |
574 | } | 573 | } |
575 | -} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
574 | +} | ... | ... |
-
Please register or login to post a comment