From 87c55d590605af88f5446e2a73d255f3f0f58ed2 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 9 May 2016 17:11:59 +0200 Subject: [PATCH] Remove old check from config validation These keys are not used, actually. --- libimagstore/src/configuration.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/libimagstore/src/configuration.rs b/libimagstore/src/configuration.rs index 95e8b2fc..20e18362 100644 --- a/libimagstore/src/configuration.rs +++ b/libimagstore/src/configuration.rs @@ -120,8 +120,6 @@ pub fn config_is_valid(config: &Option) -> bool { match config { &Some(Value::Table(ref t)) => { - has_key_with_string_ary(t, "pre-read-hook-aspects") && - has_key_with_string_ary(t, "post-read-hook-aspects") && has_key_with_string_ary(t, "pre-create-hook-aspects") && has_key_with_string_ary(t, "post-create-hook-aspects") && has_key_with_string_ary(t, "pre-retrieve-hook-aspects") &&