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:
Javen O'Neal 2016-07-02 08:20:14 +00:00
parent 5af440d517
commit 1aa3511d0c

View File

@ -356,11 +356,11 @@ public class AreaReference {
}
delimiterPos = i;
}
// fall through
default:
continue; //continue the for-loop
case SPECIAL_NAME_DELIMITER:
break;
default:
continue; //continue the for-loop
}
if(!insideDelimitedName) {
insideDelimitedName = true;