Repository: bahir
Updated Branches:
  refs/heads/master [created] d32542483


[SPARK-10227] fatal warnings with sbt on Scala 2.11

The bulk of the changes are on `transient` annotation on class parameter. Often 
the compiler doesn't generate a field for this parameters, so the the transient 
annotation would be unnecessary.
But if the class parameter are used in methods, then fields are created. So it 
is safer to keep the annotations.

The remainder are some potential bugs, and deprecated syntax.

Author: Luc Bourlier <luc.bourl...@typesafe.com>

Closes #8433 from skyluc/issue/sbt-2.11.


Project: http://git-wip-us.apache.org/repos/asf/bahir/repo
Commit: http://git-wip-us.apache.org/repos/asf/bahir/commit/0092cb93
Tree: http://git-wip-us.apache.org/repos/asf/bahir/tree/0092cb93
Diff: http://git-wip-us.apache.org/repos/asf/bahir/diff/0092cb93

Branch: refs/heads/master
Commit: 0092cb936dfa03d789666c35fdbcfb440141a44f
Parents: 9c8e4c2
Author: Luc Bourlier <luc.bourl...@typesafe.com>
Authored: Wed Sep 9 09:57:58 2015 +0100
Committer: Sean Owen <so...@cloudera.com>
Committed: Wed Sep 9 09:57:58 2015 +0100

----------------------------------------------------------------------
 .../scala/org/apache/spark/streaming/mqtt/MQTTInputDStream.scala   | 2 +-
 .../org/apache/spark/streaming/twitter/TwitterInputDStream.scala   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bahir/blob/0092cb93/streaming-mqtt/src/main/scala/org/apache/spark/streaming/mqtt/MQTTInputDStream.scala
----------------------------------------------------------------------
diff --git 
a/streaming-mqtt/src/main/scala/org/apache/spark/streaming/mqtt/MQTTInputDStream.scala
 
b/streaming-mqtt/src/main/scala/org/apache/spark/streaming/mqtt/MQTTInputDStream.scala
index 7c2f18c..116c170 100644
--- 
a/streaming-mqtt/src/main/scala/org/apache/spark/streaming/mqtt/MQTTInputDStream.scala
+++ 
b/streaming-mqtt/src/main/scala/org/apache/spark/streaming/mqtt/MQTTInputDStream.scala
@@ -38,7 +38,7 @@ import org.apache.spark.streaming.receiver.Receiver
 
 private[streaming]
 class MQTTInputDStream(
-    @transient ssc_ : StreamingContext,
+    ssc_ : StreamingContext,
     brokerUrl: String,
     topic: String,
     storageLevel: StorageLevel

http://git-wip-us.apache.org/repos/asf/bahir/blob/0092cb93/streaming-twitter/src/main/scala/org/apache/spark/streaming/twitter/TwitterInputDStream.scala
----------------------------------------------------------------------
diff --git 
a/streaming-twitter/src/main/scala/org/apache/spark/streaming/twitter/TwitterInputDStream.scala
 
b/streaming-twitter/src/main/scala/org/apache/spark/streaming/twitter/TwitterInputDStream.scala
index 7cf02d8..d7de74b 100644
--- 
a/streaming-twitter/src/main/scala/org/apache/spark/streaming/twitter/TwitterInputDStream.scala
+++ 
b/streaming-twitter/src/main/scala/org/apache/spark/streaming/twitter/TwitterInputDStream.scala
@@ -39,7 +39,7 @@ import org.apache.spark.streaming.receiver.Receiver
 */
 private[streaming]
 class TwitterInputDStream(
-    @transient ssc_ : StreamingContext,
+    ssc_ : StreamingContext,
     twitterAuth: Option[Authorization],
     filters: Seq[String],
     storageLevel: StorageLevel

Reply via email to