From 3c15ae513cc800990c5a002d3554fd53b11fe4fd Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 27 Feb 2018 00:58:20 -0500 Subject: simplify --- src/vcs/git.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/vcs') diff --git a/src/vcs/git.rs b/src/vcs/git.rs index 26a64a9..ddbdfcc 100644 --- a/src/vcs/git.rs +++ b/src/vcs/git.rs @@ -138,13 +138,13 @@ impl GitInfo { #[cfg(feature="verbose")] let _ = talk_about_time(now, "remote branch diff"); GitInfo { - modified_files: modified_files, - staged_files: staged_files, - new_files: new_files, - commits: commits, - active_operation: active_operation, - branch: branch, - remote_branch_diff: remote_branch_diff, + modified_files, + staged_files, + new_files, + commits, + active_operation, + branch, + remote_branch_diff, } } } -- cgit v1.2.3-54-g00ecf