fix switch

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1896551 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-12-30 22:32:48 +00:00
parent a83fe7d91f
commit 075bc7021a
1 changed files with 6 additions and 5 deletions

View File

@ -370,11 +370,6 @@ public class ExcelComparator {
boolean b1, b2;
String borderName;
switch (borderSide) {
case 't': default:
b1 = style1.getBorderTop() == BorderStyle.THIN;
b2 = style2.getBorderTop() == BorderStyle.THIN;
borderName = "TOP";
break;
case 'b':
b1 = style1.getBorderBottom() == BorderStyle.THIN;
b2 = style2.getBorderBottom() == BorderStyle.THIN;
@ -390,6 +385,12 @@ public class ExcelComparator {
b2 = style2.getBorderRight() == BorderStyle.THIN;
borderName = "RIGHT";
break;
case 't':
default:
b1 = style1.getBorderTop() == BorderStyle.THIN;
b2 = style2.getBorderTop() == BorderStyle.THIN;
borderName = "TOP";
break;
}
if (b1 != b2) {
addMessage(loc1, loc2,