refactor: Remove dbg!()

This commit is contained in:
Kogia-sima 2020-12-18 11:03:44 +09:00
parent 06e34cf9d5
commit 47c09e4f55
1 changed files with 0 additions and 1 deletions

View File

@ -392,7 +392,6 @@ fn find_raw_string_end(haystack: &str) -> Option<usize> {
}
}
dbg!(&terminator);
haystack[terminator.len() + 1..]
.find(&terminator)
.map(|p| p + terminator.len() * 2 + 1)