Skip to content

Commit

Permalink
Make DebugForeachWriter private.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Torres committed Aug 19, 2017
1 parent 28c2f4b commit ac7d785
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ case class MemoryPlan(sink: MemorySink, output: Seq[Attribute]) extends LeafNode
}

/** A [[ForeachWriter]] that appends events onto a sequence. Not thread-safe. */
class DebugForeachWriter[A : Encoder]() extends ForeachWriter[A] {
private class DebugForeachWriter[A : Encoder]() extends ForeachWriter[A] {

var items: Seq[A] = Seq()

Expand Down

0 comments on commit ac7d785

Please sign in to comment.