tabs to spaces

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893219 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-09-10 08:46:10 +00:00
parent 0739e608a8
commit 99047b5245
2 changed files with 5 additions and 5 deletions

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;

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();
}