From 636674b0592513deef8542bad8fd9272ea90da17 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 8 Sep 2016 16:52:03 +0200 Subject: [PATCH] All StoreIds point to files, so this check does not make sense here --- libimagstorestdhook/src/linkverify.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/libimagstorestdhook/src/linkverify.rs b/libimagstorestdhook/src/linkverify.rs index 85551999..cf877526 100644 --- a/libimagstorestdhook/src/linkverify.rs +++ b/libimagstorestdhook/src/linkverify.rs @@ -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); } } })