Revert "Add stubs for getting information from the config"

This reverts commit 8f7f89ae10325a2f7f2e64378c3342c14780563b.
This commit is contained in:
Matthias Beyer 2016-07-26 14:37:29 +02:00
parent d59b139f23
commit 2dbad3f232
1 changed files with 0 additions and 16 deletions

View File

@ -8,22 +8,6 @@ use vcs::git::result::Result;
use vcs::git::action::StoreAction; use vcs::git::action::StoreAction;
pub fn author_name(config: &Value) -> Result<&str> {
unimplemented!()
}
pub fn author_mail(config: &Value) -> Result<&str> {
unimplemented!()
}
pub fn committer_name(config: &Value) -> Result<&str> {
unimplemented!()
}
pub fn committer_mail(config: &Value) -> Result<&str> {
unimplemented!()
}
pub fn commit_interactive(config: &Value) -> bool { pub fn commit_interactive(config: &Value) -> bool {
unimplemented!() unimplemented!()
} }