Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mengxr committed Aug 26, 2015
1 parent a4781d5 commit 14700a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ object Strategy {
}

@deprecated("Use Strategy.defaultStrategy instead.", "1.5.0")
@Since("")
@Since("1.2.0")
def defaultStategy(algo: Algo): Strategy = defaultStrategy(algo)

}
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ import org.apache.spark.mllib.linalg.Vector
*/
@Since("1.0.0")
@DeveloperApi
class Node @Since("1.0.0") (
class Node @Since("1.2.0") (
@Since("1.0.0") val id: Int,
@Since("1.0.0") var predict: Predict,
@Since("1.0.0") var impurity: Double,
@Since("1.2.0") var impurity: Double,
@Since("1.0.0") var isLeaf: Boolean,
@Since("1.0.0") var split: Option[Split],
@Since("1.0.0") var leftNode: Option[Node],
Expand Down

0 comments on commit 14700a2

Please sign in to comment.