Removed unused functions

This commit is contained in:
Kai Sickeler 2016-03-25 13:19:00 +01:00 committed by Matthias Beyer
parent 797a707c8e
commit cdbc0ceae5

View file

@ -126,14 +126,6 @@ pub fn config_is_valid(config: &Option<Value>) -> bool {
}
}
pub fn get_pre_read_aspect_names(value: &Option<Value>) -> Vec<String> {
get_aspect_names_for_aspect_position("pre-read-hook-aspects", value)
}
pub fn get_post_read_aspect_names(value: &Option<Value>) -> Vec<String> {
get_aspect_names_for_aspect_position("post-read-hook-aspects", value)
}
pub fn get_pre_create_aspect_names(value: &Option<Value>) -> Vec<String> {
get_aspect_names_for_aspect_position("pre-create-hook-aspects", value)
}