Skip to content

Commit

Permalink
Add private[spark] to EventLoop
Browse files Browse the repository at this point in the history
  • Loading branch information
zsxwing committed Jan 14, 2015
1 parent 1f73eac commit 55fb6f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/org/apache/spark/util/EventLoop.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.apache.spark.Logging
* An event loop to receive events from the caller and process all events in the event thread. It
* will start an exclusive event thread to process all events.
*/
abstract class EventLoop[E](name: String) extends Logging {
private[spark] abstract class EventLoop[E](name: String) extends Logging {

private val eventQueue: BlockingQueue[E] = new LinkedBlockingDeque[E]()

Expand Down

0 comments on commit 55fb6f6

Please sign in to comment.