Skip to content

Commit

Permalink
Merge pull request #3 from tpolecat/expose-ansifilter
Browse files Browse the repository at this point in the history
Make AnsiFilterStream public
  • Loading branch information
tpolecat authored Feb 9, 2021
2 parents 1d6ae88 + d7ee722 commit 00f9fbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
~/.sbt
key: sbt-${{ hashFiles('**/build.sbt') }}
- name: Run tests
run: csbt headerCheck +clean +test
run: csbt headerCheck +clean +test docs/makeSite
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package natchez.http4s
import java.io.{OutputStream, FilterOutputStream}

/** Filter ANSI codes out of an OutputStream. */
private[http4s] class AnsiFilterStream(os: OutputStream) extends FilterOutputStream(os) {
class AnsiFilterStream(os: OutputStream) extends FilterOutputStream(os) {
case class State(apply: Int => State)

val S: State = State {
Expand Down

0 comments on commit 00f9fbd

Please sign in to comment.