blob: 8bb02a29e15cb48819c1060aa28c7d80021be43a [file] [log] [blame]
package com.siyeh.ipp.switchtoif.replace_if_with_switch;
public class Polyadic {
void x(int i) {
<caret>if (i == 1 || i == 2 || i == 3) {
} else if (i == 5) {
} else {
}
}
}