aboutsummaryrefslogtreecommitdiff
path: root/external/mqtt/src/test
diff options
context:
space:
mode:
authorTathagata Das <tathagata.das1565@gmail.com>2015-08-24 12:40:09 -0700
committerTathagata Das <tathagata.das1565@gmail.com>2015-08-24 12:40:09 -0700
commit7478c8b66d6a2b1179f20c38b49e27e37b0caec3 (patch)
tree252ac13596be6d9d4be7fedb63cb08d25b063f6e /external/mqtt/src/test
parent4e0395ddb764d092b5b38447af49e196e590e0f0 (diff)
downloadspark-7478c8b66d6a2b1179f20c38b49e27e37b0caec3.tar.gz
spark-7478c8b66d6a2b1179f20c38b49e27e37b0caec3.tar.bz2
spark-7478c8b66d6a2b1179f20c38b49e27e37b0caec3.zip
[SPARK-9791] [PACKAGE] Change private class to private class to prevent unnecessary classes from showing up in the docs
In addition, some random cleanup of import ordering Author: Tathagata Das <tathagata.das1565@gmail.com> Closes #8387 from tdas/SPARK-9791 and squashes the following commits: 67f3ee9 [Tathagata Das] Change private class to private[package] class to prevent them from showing up in the docs
Diffstat (limited to 'external/mqtt/src/test')
-rw-r--r--external/mqtt/src/test/scala/org/apache/spark/streaming/mqtt/MQTTTestUtils.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/mqtt/src/test/scala/org/apache/spark/streaming/mqtt/MQTTTestUtils.scala b/external/mqtt/src/test/scala/org/apache/spark/streaming/mqtt/MQTTTestUtils.scala
index 1a371b7008..1618e2c088 100644
--- a/external/mqtt/src/test/scala/org/apache/spark/streaming/mqtt/MQTTTestUtils.scala
+++ b/external/mqtt/src/test/scala/org/apache/spark/streaming/mqtt/MQTTTestUtils.scala
@@ -33,7 +33,7 @@ import org.apache.spark.{Logging, SparkConf}
/**
* Share codes for Scala and Python unit tests
*/
-private class MQTTTestUtils extends Logging {
+private[mqtt] class MQTTTestUtils extends Logging {
private val persistenceDir = Utils.createTempDir()
private val brokerHost = "localhost"