// "Replace 'switch' with 'if'" "true" class X { public void doSomething( String value) { //comment6 //comment7 if ("case1".equals(value)) {//comment1 //comment2 //comment3 } else if ("case2".equals(value)) {//comment4 //comment5 }//comment8 } }