File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,6 @@ impl Chunker {
133
133
}
134
134
135
135
println ! ( "[INFO] Unable to close all ifs. Undoing the added scripts to a point where num_unclosed_ifs is 0." ) ;
136
- println ! ( "[INFO] UNDO CALL STACK: {:?}" , undo_info. call_stack) ;
137
136
let mut removed_scripts = vec ! [ ] ;
138
137
let mut removed_len = 0 ;
139
138
@@ -145,7 +144,6 @@ impl Chunker {
145
144
if builder. contains_flow_op ( ) {
146
145
if builder. is_script_buf ( ) && builder. len ( ) == 1 {
147
146
num_unclosed_ifs -= builder. num_unclosed_ifs ( ) ;
148
- println ! ( "[INFO] Removing {:?}" , builder) ;
149
147
removed_len += builder. len ( ) ;
150
148
removed_scripts. push ( builder) ;
151
149
if num_unclosed_ifs == 0 {
@@ -184,10 +182,6 @@ impl Chunker {
184
182
}
185
183
} else {
186
184
// No OP_IF, OP_NOTIF or OP_ENDIF in that structured script so just remove it
187
- println ! (
188
- "[INFO] Removing because it contains no flow control {:?}" ,
189
- builder
190
- ) ;
191
185
removed_len += builder. len ( ) ;
192
186
removed_scripts. push ( builder) ;
193
187
}
You can’t perform that action at this time.
0 commit comments