Browse Source

tabs to spaces

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893219 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_0
PJ Fanning 2 years ago
parent
commit
99047b5245

+ 1
- 1
poi-ooxml/src/main/java/org/apache/poi/xddf/usermodel/chart/XDDFChartData.java View File

@@ -167,7 +167,7 @@ public abstract class XDDFChartData {
int numOfPoints = category.getPointCount();
if (numOfPoints != values.getPointCount()) {
throw new IllegalStateException("Category and values must have the same point count, but had " +
numOfPoints + " categories and " + values.getPointCount() + " values.");
numOfPoints + " categories and " + values.getPointCount() + " values.");
}
}
this.categoryData = category;

+ 4
- 4
poi-ooxml/src/main/java/org/apache/poi/xddf/usermodel/chart/XDDFDataSourcesFactory.java View File

@@ -72,10 +72,10 @@ public class XDDFDataSourcesFactory {

@Override
public String getPointAt(int index) {
if (category.getPtArray().length <= index) {
throw new IllegalArgumentException("Cannot access 0-based index " + index +
" in point-array with " + category.getPtArray().length + " items");
}
if (category.getPtArray().length <= index) {
throw new IllegalArgumentException("Cannot access 0-based index " + index +
" in point-array with " + category.getPtArray().length + " items");
}
return category.getPtArray(index).getV();
}


Loading…
Cancel
Save