diff --git a/core/src/main/scala/org/apache/spark/scheduler/SparkListenerBus.scala b/core/src/main/scala/org/apache/spark/scheduler/SparkListenerBus.scala
index 8283c4b3928903bbf16722e01f2aa45f81c61d8d..4d3e4a17ba5620281d0b0e7238fd39907d814e46 100644
--- a/core/src/main/scala/org/apache/spark/scheduler/SparkListenerBus.scala
+++ b/core/src/main/scala/org/apache/spark/scheduler/SparkListenerBus.scala
@@ -71,11 +71,11 @@ private[spark] class SparkListenerBus() extends Logging {
     }
   }
 
-  /** Waits until there are no more events in the queue, or until the specified time has elapsed.
-    * 
-    * Used for testing only. Returns true if the queue has emptied and false is the specified time
-    * elapsed before the queue emptied.
-    */
+  /**
+   * Waits until there are no more events in the queue, or until the specified time has elapsed.
+   * Used for testing only. Returns true if the queue has emptied and false is the specified time
+   * elapsed before the queue emptied.
+   */
   def waitUntilEmpty(timeoutMillis: Int): Boolean = {
     val finishTime = System.currentTimeMillis + timeoutMillis
     while (!eventQueue.isEmpty()) {