Skip to content

Commit 191daa6

Browse files
committed
Fix a few javadoc warnings
1 parent 545c5ab commit 191daa6

4 files changed

Lines changed: 7 additions & 2 deletions

File tree

carte/src/io/sf/carte/chart/ChartList.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
* WARNING: This code is nowhere near being complete nor API-stable. Use it at
2929
* your own risk, and contributions would be welcome.
3030
* </p>
31+
*
32+
* @param <T> the type of chart metadata.
3133
*/
3234
public class ChartList<T extends ChartInfo> extends ArrayList<T> {
3335

carte/src/io/sf/carte/chart/ChartRenderer.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* WARNING: This code is nowhere near being complete nor API-stable. Use it at
2424
* your own risk, and contributions would be welcome.
2525
* </p>
26+
*
2627
* @param <T> the type of chart metadata.
2728
*/
2829
public interface ChartRenderer<T extends ChartInfo> {

carte/src/io/sf/carte/chart/SVGChartRenderer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
* WARNING: This code is nowhere near being complete nor API-stable. Use it at
3939
* your own risk, and contributions would be welcome.
4040
* </p>
41+
*
42+
* @param <T> the type of chart metadata.
4143
*/
4244
abstract public class SVGChartRenderer<T extends ChartInfo> extends AbstractChartRenderer<T> {
4345

carte/src/io/sf/carte/report/ReportStore.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ default void init(DOMElement configRoot) throws ReportException, IOException {
3939
*
4040
* @param chartInfo the chart information and data.
4141
* @param document the document to store (or to store the data in).
42-
* @throws ReportException
43-
* @throws IOException
42+
* @throws ReportException if a non-IO problem was found.
43+
* @throws IOException if an IO problem was found.
4444
*/
4545
void store(ChartInfo chartInfo, DOMDocument document) throws ReportException, IOException;
4646

0 commit comments

Comments
 (0)