Github user shimamoto commented on a diff in the pull request:
https://github.com/apache/predictionio/pull/470#discussion_r221196515
--- Diff: build.sbt ---
@@ -310,10 +310,11 @@ parallelExecution in Global := false
testOptions in Test += Tests.Argument("-oDF")
printBuildInfo := {
+ val log = streams.value.log
if (scalaBinaryVersion.value == "2.10")
- streams.value.log.warn("Support for Scala 2.10 is deprecated. Please
upgrade to a newer version of Scala.")
+ log.warn("Support for Scala 2.10 is deprecated. Please upgrade to a
newer version of Scala.")
if (sparkBinaryVersion.value == "1.6")
- streams.value.log.warn("Support for Spark 1.6 is deprecated. Please
upgrade to a newer version of Spark.")
+ log.warn("Support for Spark 1.6 is deprecated. Please upgrade to a
newer version of Spark.")
--- End diff --
We should be able to delete this log because Spark 1.6 has been dropped.
---