Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
* remove useless comments
* remove useless annotation
  • Loading branch information
AB-xdev committed Oct 26, 2023
1 parent aa0a50e commit b5339c0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,10 @@
public class BubbleDataPoint
{

/**
* @see #setX(BigDecimal)
*/
private BigDecimal x;

/**
* @see #setY(BigDecimal)
*/
private BigDecimal y;

/**
* @see #setR(BigDecimal)
*/
private BigDecimal r;

public BubbleDataPoint()
Expand Down Expand Up @@ -93,17 +84,11 @@ public BubbleDataPoint setY(final BigDecimal y)
return this;
}

/**
* @see #setR(BigDecimal)
*/
public BigDecimal getR()
{
return this.r;
}

/**
* @see #setR(BigDecimal)
*/
public BubbleDataPoint setR(final double r)
{
this.r = new BigDecimal(String.valueOf(r));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@

import java.math.BigDecimal;

import com.fasterxml.jackson.annotation.JsonInclude;


@JsonInclude()
public class ScatterDataPoint
{

Expand Down

0 comments on commit b5339c0

Please sign in to comment.