]> source.dussan.org Git - poi.git/commitdiff
findbugs: remove switch statement fall-through and move default switch to bottom
authorJaven O'Neal <onealj@apache.org>
Sat, 2 Jul 2016 08:20:14 +0000 (08:20 +0000)
committerJaven O'Neal <onealj@apache.org>
Sat, 2 Jul 2016 08:20:14 +0000 (08:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751034 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/util/AreaReference.java

index 70c008f0df2eb45041b03c4c020473f08d4231bb..52e6d4aff52872f71313d41e2751111430bbc220 100644 (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;