Преглед изворни кода

lgtm issues

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1848438 13f79535-47bb-0310-9956-ffa450edef68
pull/136/head
PJ Fanning пре 5 година
родитељ
комит
206e66bb3e

+ 1
- 1
src/java/org/apache/poi/ss/formula/functions/MatrixFunction.java Прегледај датотеку

@@ -63,7 +63,7 @@ public abstract class MatrixFunction implements Function{
i = 0;
j++;
}
matrix[j][i++] = aVector;
if (j < matrix.length) matrix[j][i++] = aVector;
}
}

+ 1
- 1
src/java/org/apache/poi/util/StringUtil.java Прегледај датотеку

@@ -698,7 +698,7 @@ public class StringUtil {
final String prefix;

// #61881 - for now we only check the first char
if (len > 0 && string[offset] == 0 && string[offset+1] == 0) {
if (len > 0 && offset < (string.length - 1) && string[offset] == 0 && string[offset+1] == 0) {
newOffset = offset+2;
prefix = "?";


+ 1
- 0
src/ooxml/java/org/apache/poi/ooxml/util/POIXMLConstants.java Прегледај датотеку

@@ -20,6 +20,7 @@ package org.apache.poi.ooxml.util;
public class POIXMLConstants {
public static final String FEATURE_LOAD_DTD_GRAMMAR = "http://apache.org/xml/features/nonvalidating/load-dtd-grammar";
public static final String FEATURE_LOAD_EXTERNAL_DTD = "http://apache.org/xml/features/nonvalidating/load-external-dtd";
public static final String FEATURE_DISALLOW_DOCTYPE_DECL = "http://apache.org/xml/features/disallow-doctype-decl";
public static final String PROPERTY_ENTITY_EXPANSION_LIMIT = "http://www.oracle.com/xml/jaxp/properties/entityExpansionLimit";
public static final String PROPERTY_SECURITY_MANAGER = "http://apache.org/xml/properties/security-manager";
}

Loading…
Откажи
Сачувај