findbugs: remove switch statement fall-through and move default switch to bottom
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5af440d517
commit
1aa3511d0c
@ -356,11 +356,11 @@ public class AreaReference {
|
|||||||
}
|
}
|
||||||
delimiterPos = i;
|
delimiterPos = i;
|
||||||
}
|
}
|
||||||
// fall through
|
|
||||||
default:
|
|
||||||
continue; //continue the for-loop
|
continue; //continue the for-loop
|
||||||
case SPECIAL_NAME_DELIMITER:
|
case SPECIAL_NAME_DELIMITER:
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
continue; //continue the for-loop
|
||||||
}
|
}
|
||||||
if(!insideDelimitedName) {
|
if(!insideDelimitedName) {
|
||||||
insideDelimitedName = true;
|
insideDelimitedName = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user