Skip to content

Commit e0e0415

Browse files
authored
Merge pull request #71 from FGYFFFF/fix/remove_debug_info
fix: remove debug info
2 parents 215dc72 + b6025e8 commit e0e0415

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

expr.go

-4
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,7 @@ func subSortPriority(e ExprNode, isLeft bool) bool {
195195
leftChanged := subSortPriority(e.LeftOperand(), true)
196196
rightChanged := subSortPriority(e.RightOperand(), false)
197197
if getPriority(e) > getPriority(e.LeftOperand()) {
198-
printf("before:\n")
199-
printExprNode(e)
200198
leftOperandToParent(e, isLeft)
201-
printf("after:\n")
202-
printExprNode(e.Parent())
203199
return true
204200
}
205201
return leftChanged || rightChanged

0 commit comments

Comments
 (0)