Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public final void removeSeries(int n) {
public abstract XDDFChartData.Series addSeries(XDDFDataSource<?> category,
XDDFNumericalDataSource<? extends Number> values);

public abstract class Series {
public abstract static class Series {
protected abstract CTSerTx getSeriesText();

public abstract void setShowLeaderLines(boolean showLeaderLines);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ void testDate() throws Exception {
}


private class TestSheetHandler implements XSSFSheetXMLHandler.SheetContentsHandler {
private static class TestSheetHandler implements XSSFSheetXMLHandler.SheetContentsHandler {
private final StringBuilder sb = new StringBuilder();

void startSheet(String sheetName) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ private Integer setVerticalCellRange(LinkedDataRecord linkedDataRecord,
}
}

linkedDataRecord.setFormulaOfLink(ptgList.toArray(new Ptg[0]));
linkedDataRecord.setFormulaOfLink(ptgList.toArray(Ptg.EMPTY_PTG_ARRAY));

return rowCount * colCount;
}
Expand Down