In our code guidelines (or at least the IDE setup files), case is not indented
    switch (i) {
    case 1:
        break;

but the checkstyle profile is looking for a 4 character indent:
    switch (i) {
        case 1:
            break;

which do we want?

[ ] No indent
[ ] Indent 4 characters

--
Jeremy

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to