use Runtime as GRuntime, for clearness
This commit is contained in:
parent
0e7d1730fc
commit
a24981b6b6
1 changed files with 3 additions and 3 deletions
|
@ -22,12 +22,12 @@ use vcs::git::result::Result;
|
||||||
use vcs::git::error::MapErrInto;
|
use vcs::git::error::MapErrInto;
|
||||||
use vcs::git::error::GitHookErrorKind as GHEK;
|
use vcs::git::error::GitHookErrorKind as GHEK;
|
||||||
use vcs::git::error::GitHookError as GHE;
|
use vcs::git::error::GitHookError as GHE;
|
||||||
use vcs::git::runtime::Runtime;
|
use vcs::git::runtime::Runtime as GRuntime;
|
||||||
|
|
||||||
pub struct CreateHook {
|
pub struct CreateHook {
|
||||||
storepath: PathBuf,
|
storepath: PathBuf,
|
||||||
|
|
||||||
runtime: Runtime,
|
runtime: GRuntime,
|
||||||
|
|
||||||
position: HookPosition,
|
position: HookPosition,
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@ impl CreateHook {
|
||||||
|
|
||||||
pub fn new(storepath: PathBuf, p: HookPosition) -> CreateHook {
|
pub fn new(storepath: PathBuf, p: HookPosition) -> CreateHook {
|
||||||
CreateHook {
|
CreateHook {
|
||||||
runtime: Runtime::new(&storepath),
|
runtime: GRuntime::new(&storepath),
|
||||||
storepath: storepath,
|
storepath: storepath,
|
||||||
position: p,
|
position: p,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue