Skip to content

Commit

Permalink
Remove debug println from bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
yilinwei authored and armanbilge committed Oct 4, 2023
1 parent 8736cd6 commit 5c9bf40
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/core/shared/src/main/scala/codec/BinaryCodecs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ trait BinaryCodecs {
def bit(length: Int): Codec[BitVector] =
Codec.simple[BitVector](
_.toBin,
s => { println(s"got $s"); BitVector.fromBinDescriptive(s) },
// BitVector.fromBinDescriptive(_),
BitVector.fromBinDescriptive(_),
Type.bit(length)
)

Expand Down

0 comments on commit 5c9bf40

Please sign in to comment.