Indexer: Remove pointless check

This commit is contained in:
Yorhel 2016-11-27 10:59:31 +01:00
parent b79ecfb284
commit 1ca0cd4325

View file

@ -27,7 +27,7 @@ fn get_contents(f: Option<open::Path>) -> Result<HashSet<String>> {
let mut it = line.split(' ');
let pkg = it.next_back().unwrap();
if !pkg.contains('/') || pkg == "LOCATION" {
if !pkg.contains('/') {
continue;
}
filecnt += 1;