Get rid of println

This commit is contained in:
greg 2018-11-05 14:52:51 -08:00
parent 151246e1c5
commit ad53d4394b
1 changed files with 0 additions and 1 deletions

View File

@ -424,7 +424,6 @@ impl<'a> State<'a> {
let cond = self.expression(Node::Expr(cond))?;
for alt in alternatives {
println!("ALTERNATIVE: {:?}", alt);
// no matter what type of condition we have, ignore alternative if the guard evaluates false
if !self.guard_passes(&alt.guard, &cond)? {
continue;