Skip to content

Commit 5f2dec2

Browse files
committed
Fixed scalastyle issue in TreePoint
1 parent 6b5651e commit 5f2dec2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mllib/src/main/scala/org/apache/spark/mllib/tree/impl/TreePoint.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ import org.apache.spark.rdd.RDD
3838
* @param binnedFeatures Binned feature values.
3939
* Same length as LabeledPoint.features, but values are bin indices.
4040
*/
41-
private[tree] class TreePoint(val label: Double, val binnedFeatures: Array[Int]) extends Serializable {
41+
private[tree] class TreePoint(val label: Double, val binnedFeatures: Array[Int])
42+
extends Serializable {
4243
}
4344

4445
private[tree] object TreePoint {

0 commit comments

Comments
 (0)