Skip to content

Commit

Permalink
[SPARK-3418] Fixed one more style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
brkyvz committed Sep 6, 2014
1 parent 56d7c85 commit 848406c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 848406c

Please sign in to comment.