All StoreIds point to files, so this check does not make sense here

This commit is contained in:
Matthias Beyer 2016-09-08 16:52:03 +02:00
parent ff5a4b46c7
commit 636674b059

View file

@ -55,8 +55,6 @@ impl NonMutableHookDataAccessor for LinkedEntriesExistHook {
for link in links {
if !link.exists() {
warn!("File link does not exist: {:?} -> {:?}", fle.get_location(), link);
} else if !link.is_file() {
warn!("File link is not a file: {:?} -> {:?}", fle.get_location(), link);
}
}
})