* quietly ignore if xattr can't be read for some reason, outdated jre, not supported by fs, etc

This commit is contained in:
Reinhard Pointner 2012-11-10 07:48:36 +00:00
parent 35e1ee4735
commit cb8cf19703
1 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ public class MediaDetection {
}
}
} catch (Throwable e) {
Logger.getLogger(MediaDetection.class.getClass().getName()).warning("Failed to read xattr: " + e.getMessage());
// ignore
}
}
@ -378,7 +378,7 @@ public class MediaDetection {
// can't read meta attributes => ignore
}
} catch (Throwable e) {
Logger.getLogger(MediaDetection.class.getClass().getName()).warning("Failed to read xattr: " + e.getMessage());
// ignore
}
}