Skip to content

Commit 55fb6f6

Browse files
committed
Add private[spark] to EventLoop
1 parent 1f73eac commit 55fb6f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/util/EventLoop.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import org.apache.spark.Logging
2727
* An event loop to receive events from the caller and process all events in the event thread. It
2828
* will start an exclusive event thread to process all events.
2929
*/
30-
abstract class EventLoop[E](name: String) extends Logging {
30+
private[spark] abstract class EventLoop[E](name: String) extends Logging {
3131

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

0 commit comments

Comments
 (0)