summaryrefslogtreecommitdiffstats
path: root/src/search
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-11-27 23:10:11 -0600
committerToby Vincent <tobyv13@gmail.com>2022-11-27 23:10:11 -0600
commit3f188dea518fe29324f7a2416316c436cea8e88a (patch)
treecb98ab6f517f65510b6aa0988ec88c6f976d01ae /src/search
parentdfd99151bcc364b2ea947f1d4ae8a5523b92d40a (diff)
fix: fix bug in project matching for git repositoriesv0.1.0
Diffstat (limited to 'src/search')
-rw-r--r--src/search/entry.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/search/entry.rs b/src/search/entry.rs
index 1d885c8..778c75c 100644
--- a/src/search/entry.rs
+++ b/src/search/entry.rs
@@ -41,7 +41,6 @@ impl Entry {
impl Iterator for Entry {
type Item = ProjectItem;
- #[tracing::instrument]
fn next(&mut self) -> Option<Self::Item> {
match self.iter.next()? {
Ok(dir_entry) => self.parse_dir_entry(dir_entry),