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 committed Aug 23, 2023
1 parent c4f0cd2 commit b535e58
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 b535e58

Please sign in to comment.