rewrite ternary expression as simple Math.min call (yes, the ternary expression as written is equivalent to min, not max, despite the variable being called max. I'll leave that fix up to the original author).

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716044 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-11-24 07:05:11 +00:00
parent dc1acc7ead
commit 84fdda5736

View File

@ -141,8 +141,9 @@ public class XSSFTable extends POIXMLDocumentPart {
commonTokens = tokens;
} else {
int maxLenght = commonTokens.length>tokens.length? tokens.length:commonTokens.length;
for (int i =0; i<maxLenght;i++) {
final int maxLength = Math.min(commonTokens.length, tokens.length);
for (int i =0; i<maxLength; i++) {
if (!commonTokens[i].equals(tokens[i])) {
List<String> subCommonTokens = Arrays.asList(commonTokens).subList(0, i);