Skip to content

Commit b5339c0

Browse files
committed
Cleanup
* remove useless comments * remove useless annotation
1 parent aa0a50e commit b5339c0

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

chartjs-java-model/src/main/java/software/xdev/chartjs/model/datapoint/BubbleDataPoint.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,10 @@
2121
public class BubbleDataPoint
2222
{
2323

24-
/**
25-
* @see #setX(BigDecimal)
26-
*/
2724
private BigDecimal x;
2825

29-
/**
30-
* @see #setY(BigDecimal)
31-
*/
3226
private BigDecimal y;
3327

34-
/**
35-
* @see #setR(BigDecimal)
36-
*/
3728
private BigDecimal r;
3829

3930
public BubbleDataPoint()
@@ -93,17 +84,11 @@ public BubbleDataPoint setY(final BigDecimal y)
9384
return this;
9485
}
9586

96-
/**
97-
* @see #setR(BigDecimal)
98-
*/
9987
public BigDecimal getR()
10088
{
10189
return this.r;
10290
}
10391

104-
/**
105-
* @see #setR(BigDecimal)
106-
*/
10792
public BubbleDataPoint setR(final double r)
10893
{
10994
this.r = new BigDecimal(String.valueOf(r));

chartjs-java-model/src/main/java/software/xdev/chartjs/model/datapoint/ScatterDataPoint.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@
1717

1818
import java.math.BigDecimal;
1919

20-
import com.fasterxml.jackson.annotation.JsonInclude;
2120

22-
23-
@JsonInclude()
2421
public class ScatterDataPoint
2522
{
2623

0 commit comments

Comments
 (0)