Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove comments that unnecessarily disable Scalastyle check
  • Loading branch information
arucard21 committed Mar 22, 2018
commit b6088e2ece672d0b946b786a6d74b11491a84c25
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ package org.apache.spark.util
* through all the elements.
*/
private[spark]
// scalastyle:off
abstract class CompletionIterator[ +A, +I <: Iterator[A]](sub: I) extends Iterator[A] {
// scalastyle:on

private[this] var completed = false
def next(): A = sub.next()
Expand Down