From a24981b6b6d53a83039873b8817e064f06a01614 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 7 Sep 2016 17:13:57 +0200 Subject: [PATCH] use Runtime as GRuntime, for clearness --- libimagstorestdhook/src/vcs/git/create.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libimagstorestdhook/src/vcs/git/create.rs b/libimagstorestdhook/src/vcs/git/create.rs index cf9aa489..b587afcf 100644 --- a/libimagstorestdhook/src/vcs/git/create.rs +++ b/libimagstorestdhook/src/vcs/git/create.rs @@ -22,12 +22,12 @@ use vcs::git::result::Result; use vcs::git::error::MapErrInto; use vcs::git::error::GitHookErrorKind as GHEK; use vcs::git::error::GitHookError as GHE; -use vcs::git::runtime::Runtime; +use vcs::git::runtime::Runtime as GRuntime; pub struct CreateHook { storepath: PathBuf, - runtime: Runtime, + runtime: GRuntime, position: HookPosition, } @@ -36,7 +36,7 @@ impl CreateHook { pub fn new(storepath: PathBuf, p: HookPosition) -> CreateHook { CreateHook { - runtime: Runtime::new(&storepath), + runtime: GRuntime::new(&storepath), storepath: storepath, position: p, }