remove debug println

This commit is contained in:
jilen 2024-12-09 17:13:46 +08:00
parent 1adada0c79
commit cd3503551b

View file

@ -123,8 +123,5 @@ private[minisql] def extractTerm(using Quotes)(x: quotes.reflect.Term) = {
unwrapTerm(t)
case o => o
}
val o = unwrapTerm(x)
println(s"Before extract ${x.show}")
println(s"After extract ${o.show}")
o
unwrapTerm(x)
}