Skip to content

Commit

Permalink
Add .0s to the versions for the derpecated anotations in SparkEnv.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Jul 1, 2015
1 parent ca13c9d commit 7f1455b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scala/org/apache/spark/SparkEnv.scala
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class SparkEnv (
val conf: SparkConf) extends Logging {

// TODO Remove actorSystem
@deprecated("Actor system is no longer supported as of 1.4", "1.4")
@deprecated("Actor system is no longer supported as of 1.4.0", "1.4.0")
val actorSystem: ActorSystem = rpcEnv.asInstanceOf[AkkaRpcEnv].actorSystem

private[spark] var isStopped = false
Expand Down Expand Up @@ -173,7 +173,7 @@ object SparkEnv extends Logging {
/**
* Returns the ThreadLocal SparkEnv.
*/
@deprecated("Use SparkEnv.get instead", "1.2")
@deprecated("Use SparkEnv.get instead", "1.2.0")
def getThreadLocal: SparkEnv = {
env
}
Expand Down

0 comments on commit 7f1455b

Please sign in to comment.