@@ -47,7 +47,7 @@ public ScatterDataSet(List<Entry> yVals, String label) {
4747
4848 @ Override
4949 public DataSet <Entry > copy () {
50- List <Entry > entries = new ArrayList <Entry >();
50+ List <Entry > entries = new ArrayList <>();
5151 for (int i = 0 ; i < mEntries .size (); i ++) {
5252 entries .add (mEntries .get (i ).copy ());
5353 }
@@ -67,8 +67,6 @@ protected void copy(ScatterDataSet scatterDataSet) {
6767 /**
6868 * Sets the size in density pixels the drawn scattershape will have. This
6969 * only applies for non custom shapes.
70- *
71- * @param size
7270 */
7371 public void setScatterShapeSize (float size ) {
7472 mShapeSize = size ;
@@ -82,8 +80,6 @@ public float getScatterShapeSize() {
8280 /**
8381 * Sets the ScatterShape this DataSet should be drawn with. This will search for an available IShapeRenderer and set this
8482 * renderer for the DataSet.
85- *
86- * @param shape
8783 */
8884 public void setScatterShape (ScatterChart .ScatterShape shape ) {
8985 mShapeRenderer = getRendererForShape (shape );
@@ -92,8 +88,6 @@ public void setScatterShape(ScatterChart.ScatterShape shape) {
9288 /**
9389 * Sets a new IShapeRenderer responsible for drawing this DataSet.
9490 * This can also be used to set a custom IShapeRenderer aside from the default ones.
95- *
96- * @param shapeRenderer
9791 */
9892 public void setShapeRenderer (IShapeRenderer shapeRenderer ) {
9993 mShapeRenderer = shapeRenderer ;
@@ -107,8 +101,6 @@ public IShapeRenderer getShapeRenderer() {
107101 /**
108102 * Sets the radius of the hole in the shape (applies to Square, Circle and Triangle)
109103 * Set this to <= 0 to remove holes.
110- *
111- * @param holeRadius
112104 */
113105 public void setScatterShapeHoleRadius (float holeRadius ) {
114106 mScatterShapeHoleRadius = holeRadius ;
@@ -121,8 +113,6 @@ public float getScatterShapeHoleRadius() {
121113
122114 /**
123115 * Sets the color for the hole in the shape.
124- *
125- * @param holeColor
126116 */
127117 public void setScatterShapeHoleColor (int holeColor ) {
128118 mScatterShapeHoleColor = holeColor ;
0 commit comments