Remove enable_hooks from InternalConfiguration

This commit is contained in:
Robert Ignat 2017-06-07 18:07:09 +02:00 committed by Matthias Beyer
parent a34eda8c41
commit 9a79232446
2 changed files with 0 additions and 8 deletions

View file

@ -401,10 +401,6 @@ version = \"0.3.0\"\
} }
impl<'a> InternalConfiguration for MockLinkApp<'a> { impl<'a> InternalConfiguration for MockLinkApp<'a> {
fn enable_hooks(&self) -> bool {
false
}
fn enable_logging(&self) -> bool { fn enable_logging(&self) -> bool {
false false
} }

View file

@ -280,10 +280,6 @@ pub trait GetConfiguration {
impl<'a> GetConfiguration for App<'a, 'a> {} impl<'a> GetConfiguration for App<'a, 'a> {}
pub trait InternalConfiguration { pub trait InternalConfiguration {
fn enable_hooks(&self) -> bool {
true
}
fn enable_logging(&self) -> bool { fn enable_logging(&self) -> bool {
true true
} }