Use new StoreId::is_in_collection() interface

This commit is contained in:
Matthias Beyer 2016-09-02 17:16:03 +02:00
parent a77cc2bab2
commit 4da331f990

View file

@ -91,8 +91,10 @@ pub trait ExternalLinker : InternalLinker {
/// Check whether the StoreId starts with `/link/external/`
pub fn is_external_link_storeid(id: &StoreId) -> bool {
use std::path::PathBuf;
debug!("Checking whether this is a link/external/*: '{:?}'", id);
id.is_in_collection(&["link", "external"])
id.is_in_collection(&PathBuf::from("link/external"))
}
fn get_external_link_from_file(entry: &FileLockEntry) -> Result<Url> {