Remove println (#4524)

Co-authored-by: Emmanuel Keller <emmanuel.keller@surrealdb.com>
This commit is contained in:
Micha de Vries 2024-08-16 21:08:14 +02:00 committed by GitHub
parent 78b5f8f1d0
commit 6d26797e56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -393,10 +393,7 @@ impl Parser<'_> {
) -> ParseResult<Value> {
match self.peek_kind() {
t!("$param") => ctx.run(|ctx| self.parse_closure(ctx, start)).await,
v => {
println!("{:?}", v);
self.parse_mock(start).map(Value::Mock)
}
_ => self.parse_mock(start).map(Value::Mock),
}
}