aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorJaven O'Neal <onealj@apache.org>2016-07-02 08:20:14 +0000
committerJaven O'Neal <onealj@apache.org>2016-07-02 08:20:14 +0000
commit966c0aed783fccc07a14d7a188b7b1cd9a1cbeb2 (patch)
treea8a69810a5572f16381b67669527b5a09d5c24f0 /src/java
parent43096c795dda7402b2bb14c9f593ba558a123782 (diff)
downloadpoi-966c0aed783fccc07a14d7a188b7b1cd9a1cbeb2.tar.gz
poi-966c0aed783fccc07a14d7a188b7b1cd9a1cbeb2.zip
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
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/poi/ss/util/AreaReference.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/poi/ss/util/AreaReference.java b/src/java/org/apache/poi/ss/util/AreaReference.java
index 70c008f0df..52e6d4aff5 100644
--- a/src/java/org/apache/poi/ss/util/AreaReference.java
+++ b/src/java/org/apache/poi/ss/util/AreaReference.java
@@ -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;