From 2508577dd2eb38aecfad6c3e6f05a24b22faf52e Mon Sep 17 00:00:00 2001 From: Burak Date: Fri, 5 Sep 2014 21:43:00 -0700 Subject: [PATCH] [SPARK-3418] Fixed one more style issue --- .../main/scala/org/apache/spark/mllib/linalg/Matrices.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mllib/src/main/scala/org/apache/spark/mllib/linalg/Matrices.scala b/mllib/src/main/scala/org/apache/spark/mllib/linalg/Matrices.scala index 49c56f69c72d3..cef0569bda1a5 100644 --- a/mllib/src/main/scala/org/apache/spark/mllib/linalg/Matrices.scala +++ b/mllib/src/main/scala/org/apache/spark/mllib/linalg/Matrices.scala @@ -205,7 +205,8 @@ class SparseMatrix( require(values.length == rowIndices.length, "The number of row indices and values don't match!") require(colPointers.length == numCols + 1, "The length of the column indices should be the " + - s"number of columns + 1. Currently, colPointers.length: ${colPointers.length}, numCols: $numCols") + s"number of columns + 1. Currently, colPointers.length: ${colPointers.length}, " + + s"numCols: $numCols") override def toArray: Array[Double] = values