refactor: Don't map to String anymore

pull/1/head
sgoudham 2 years ago
parent 95953b87f3
commit 8f7210a17e
Signed by: hammy
GPG Key ID: 44E818FD5457EEA4

@ -55,9 +55,9 @@ fn main() {
let matches = matches.get_matches(); let matches = matches.get_matches();
let mut git_view = GitView::new( let mut git_view = GitView::new(
matches.value_of("branch").map(str::to_string), matches.value_of("branch"),
matches.value_of("remote").map(str::to_string), matches.value_of("remote"),
matches.value_of("commit").map(str::to_string), matches.value_of("commit"),
matches.is_present("print"), matches.is_present("print"),
); );

Loading…
Cancel
Save