Skip to content

Commit

Permalink
Fix e2 to be consistent with scalastyle
Browse files Browse the repository at this point in the history
  • Loading branch information
jtescher committed Mar 8, 2015
1 parent 2071c13 commit 7a6ab07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ case class CategoricalNaiveBayesModel(
* @param features Features of this data point
*/
case class LabeledPoint(label: String, features: Array[String]) {
override def toString = {
override def toString: String = {
val featuresString = features.mkString("[", ",", "]")

s"($label, $featuresString)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http:https://www.apache.org/licenses/LICENSE-2.0
* http:https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
Expand Down

0 comments on commit 7a6ab07

Please sign in to comment.