blob: 068c494eab29e508ec7565ed52f7a821d6e92bcb [file] [log] [blame]
import java.util.List;
class Some {
public static void appendTokenTypes(StringBuilder sb, List<String> tokenTypes) {
for (int count = 0, line = 0, size = tokenTypes.size(); count < size; count++) {
boolean newLine = count == 2 || <warning descr="Condition 'line > 0' is always 'false' when reached">line > 0</warning> && (count - 2) % 6 == 0;
newLine &= (size - count) > 2;
}
}
}