Ray Milkey
Committed by Gerrit Code Review

Remove unneccesary exception handler

Change-Id: I8ffa95e803c70982fa59ed067dda12fd7568f775
...@@ -350,12 +350,8 @@ public class AaaManager { ...@@ -350,12 +350,8 @@ public class AaaManager {
350 350
351 break; 351 break;
352 case EAPOL.EAPOL_LOGOFF: 352 case EAPOL.EAPOL_LOGOFF:
353 - if (stateMachine.state() == stateMachine.STATE_AUTHORIZED) { 353 + if (stateMachine.state() == StateMachine.STATE_AUTHORIZED) {
354 - try { 354 + stateMachine.logoff();
355 - stateMachine.logoff();
356 - } catch (StateMachineException e) {
357 - e.printStackTrace();
358 - }
359 } 355 }
360 356
361 break; 357 break;
......