Indexer: Remove pointless check
This commit is contained in:
parent
b79ecfb284
commit
1ca0cd4325
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ fn get_contents(f: Option<open::Path>) -> Result<HashSet<String>> {
|
||||||
let mut it = line.split(' ');
|
let mut it = line.split(' ');
|
||||||
|
|
||||||
let pkg = it.next_back().unwrap();
|
let pkg = it.next_back().unwrap();
|
||||||
if !pkg.contains('/') || pkg == "LOCATION" {
|
if !pkg.contains('/') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
filecnt += 1;
|
filecnt += 1;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue