tweak indent in switch statement

This commit is contained in:
Neels Hofmeyr 2020-02-24 21:29:46 +01:00
parent 7d7e33f119
commit c8e96413cb
1 changed files with 10 additions and 10 deletions

View File

@ -220,16 +220,16 @@ public class IMSIPseudo extends Applet implements ToolkitInterface, ToolkitConst
ProactiveResponseHandler rspHdlr = ProactiveResponseHandler.getTheHandler();
switch (rspHdlr.getItemIdentifier()) {
case 1: /* Show LU counter */
showMsg(LUCounter);
break;
case 2: /* Show IMSI */
showIMSI();
break;
case 3: /* Change IMSI */
showMenu(itemListChangeIMSI, (byte)3);
handleMenuResponseChangeIMSI();
break;
case 1: /* Show LU counter */
showMsg(LUCounter);
break;
case 2: /* Show IMSI */
showIMSI();
break;
case 3: /* Change IMSI */
showMenu(itemListChangeIMSI, (byte)3);
handleMenuResponseChangeIMSI();
break;
}
}