Skip to content

Commit

Permalink
make ChunkBuilder public (#3837)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgfraser committed Jun 19, 2020
1 parent c510a0d commit dd21e98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/shared/src/main/scala-2.11-2.12/ChunkBuilder.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ import zio.Chunk.BitChunk
* efficiently build chunks of unboxed primitives and for compatibility with
* the Scala collection library.
*/
private[zio] sealed trait ChunkBuilder[A] extends Builder[A, Chunk[A]]
sealed trait ChunkBuilder[A] extends Builder[A, Chunk[A]]

private[zio] object ChunkBuilder {
object ChunkBuilder {

/**
* Constructs a generic `ChunkBuilder`.
Expand Down
4 changes: 2 additions & 2 deletions core/shared/src/main/scala-2.13+/ChunkBuilder.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ import zio.Chunk.BitChunk
* efficiently build chunks of unboxed primitives and for compatibility with
* the Scala collection library.
*/
private[zio] sealed trait ChunkBuilder[A] extends Builder[A, Chunk[A]]
sealed trait ChunkBuilder[A] extends Builder[A, Chunk[A]]

private[zio] object ChunkBuilder {
object ChunkBuilder {

/**
* Constructs a generic `ChunkBuilder`.
Expand Down

0 comments on commit dd21e98

Please sign in to comment.