remove prints
This commit is contained in:
parent
0f3c2f8377
commit
93200f6d8e
@ -16,11 +16,9 @@ pub fn parse(
|
||||
.iter()
|
||||
.map(|(_prefix, namespace)| {
|
||||
Some(quote!(
|
||||
|
||||
let mut found = false;
|
||||
println!("{:?}", namespace);
|
||||
debug!("{:?}", namespace);
|
||||
for (key, value) in namespace {
|
||||
println!("{:?}", value);
|
||||
if #namespace == value {
|
||||
found = true;
|
||||
}
|
||||
@ -28,7 +26,6 @@ pub fn parse(
|
||||
if !found {
|
||||
return Err("bad namespace".to_string());
|
||||
}
|
||||
// println!("{}: {}", #prefix, #namespace);
|
||||
))
|
||||
})
|
||||
.filter(|x| x.is_some())
|
||||
|
||||
Loading…
Reference in New Issue
Block a user