Skip to content

Commit

Permalink
chore: Remove dbg on find_func_with_name (#5526)
Browse files Browse the repository at this point in the history
# Description

## Problem\*

Resolves <!-- Link to GitHub Issue -->

## Summary\*

Looks like we missed a dbg in one of the recent PRs. This was causing a
lot of unnecessary dbg output.

## Additional Context



## Documentation\*

Check one:
- [X] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [X] I have tested the changes locally.
- [X] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.
  • Loading branch information
vezenovm authored Jul 16, 2024
1 parent 0319be2 commit 45e82a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/noirc_frontend/src/hir/def_map/module_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl ModuleData {
}

pub fn find_func_with_name(&self, name: &Ident) -> Option<FuncId> {
dbg!(&self.scope).find_func_with_name(name)
self.scope.find_func_with_name(name)
}

pub fn import(
Expand Down

0 comments on commit 45e82a6

Please sign in to comment.