mirror of https://github.com/apache/poi.git
fix switch
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1896551 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a83fe7d91f
commit
075bc7021a
|
@ -370,11 +370,6 @@ public class ExcelComparator {
|
||||||
boolean b1, b2;
|
boolean b1, b2;
|
||||||
String borderName;
|
String borderName;
|
||||||
switch (borderSide) {
|
switch (borderSide) {
|
||||||
case 't': default:
|
|
||||||
b1 = style1.getBorderTop() == BorderStyle.THIN;
|
|
||||||
b2 = style2.getBorderTop() == BorderStyle.THIN;
|
|
||||||
borderName = "TOP";
|
|
||||||
break;
|
|
||||||
case 'b':
|
case 'b':
|
||||||
b1 = style1.getBorderBottom() == BorderStyle.THIN;
|
b1 = style1.getBorderBottom() == BorderStyle.THIN;
|
||||||
b2 = style2.getBorderBottom() == BorderStyle.THIN;
|
b2 = style2.getBorderBottom() == BorderStyle.THIN;
|
||||||
|
@ -390,6 +385,12 @@ public class ExcelComparator {
|
||||||
b2 = style2.getBorderRight() == BorderStyle.THIN;
|
b2 = style2.getBorderRight() == BorderStyle.THIN;
|
||||||
borderName = "RIGHT";
|
borderName = "RIGHT";
|
||||||
break;
|
break;
|
||||||
|
case 't':
|
||||||
|
default:
|
||||||
|
b1 = style1.getBorderTop() == BorderStyle.THIN;
|
||||||
|
b2 = style2.getBorderTop() == BorderStyle.THIN;
|
||||||
|
borderName = "TOP";
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
if (b1 != b2) {
|
if (b1 != b2) {
|
||||||
addMessage(loc1, loc2,
|
addMessage(loc1, loc2,
|
||||||
|
|
Loading…
Reference in New Issue