Skip to content

Commit f1a6816

Browse files
committed
remove outdated comments
1 parent 2ad3ddd commit f1a6816

1 file changed

Lines changed: 0 additions & 38 deletions

File tree

  • chartjs-java-model/src/main/java/software/xdev/chartjs/model/options

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/LineOptions.java

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,7 @@ public class LineOptions extends Options<LineOptions, DefaultAnimation>
2626
{
2727
protected Number tension;
2828
protected Object stepped;
29-
30-
/**
31-
* @see #setShowLine(Boolean)
32-
*/
3329
protected Boolean showLine;
34-
/**
35-
* @see #setSpanGaps(Boolean)
36-
*/
3730
protected Boolean spanGaps;
3831
protected LineElements elements;
3932

@@ -59,64 +52,33 @@ public LineOptions setStepped(final Object stepped)
5952
return this;
6053
}
6154

62-
/**
63-
* @see #setShowLine(Boolean)
64-
*/
6555
public Boolean getShowLine()
6656
{
6757
return this.showLine;
6858
}
6959

70-
/**
71-
* <p>
72-
* If false, the lines between points are not drawn
73-
* </p>
74-
*
75-
* <p>
76-
* Default {@code true}
77-
* </p>
78-
*/
7960
public LineOptions setShowLine(final Boolean showLine)
8061
{
8162
this.showLine = showLine;
8263
return this;
8364
}
8465

85-
/**
86-
* @see #setSpanGaps(Boolean)
87-
*/
8866
public Boolean getSpanGaps()
8967
{
9068
return this.spanGaps;
9169
}
9270

93-
/**
94-
* <p>
95-
* If true, NaN data does not break the line
96-
* </p>
97-
*
98-
* <p>
99-
* Default {@code false}
100-
* </p>
101-
*/
10271
public LineOptions setSpanGaps(final Boolean spanGaps)
10372
{
10473
this.spanGaps = spanGaps;
10574
return this;
10675
}
10776

108-
/**
109-
* @return {@link LineElements} instance, or {@code null} if not set
110-
*/
11177
public LineElements getElements()
11278
{
11379
return this.elements;
11480
}
11581

116-
/**
117-
* @param elements an {@link LineElements} instance, or {@code null}
118-
* @return this instance for method chaining
119-
*/
12082
public LineOptions setElements(final LineElements elements)
12183
{
12284
this.elements = elements;

0 commit comments

Comments
 (0)