Github user shimamoto commented on a diff in the pull request:
https://github.com/apache/predictionio/pull/470#discussion_r221196431
--- 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.")
--- End diff --
We should be able to delete this log because Scala 2.10 has been dropped.
---