File tree 3 files changed +1
-3
lines changed
components/commit_details
3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ pub fn process_cmdline() -> Result<CliArgs> {
38
38
. get_one :: < String > ( "directory" )
39
39
. map_or_else ( || PathBuf :: from ( "." ) , PathBuf :: from) ;
40
40
41
- #[ allow( clippy:: option_if_let_else) ]
42
41
let repo_path = if let Some ( w) = workdir {
43
42
RepoPath :: Workdir { gitdir, workdir : w }
44
43
} else {
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ impl CompareDetailsComponent {
58
58
} ) ;
59
59
}
60
60
61
- #[ allow( unstable_name_collisions) ]
62
61
fn get_commit_text ( & self , data : & CommitDetails ) -> Vec < Line > {
63
62
let mut res = vec ! [
64
63
Line :: from( vec![
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ impl DetailsComponent {
155
155
. collect ( )
156
156
}
157
157
158
- #[ allow( unstable_name_collisions , clippy:: too_many_lines) ]
158
+ #[ allow( clippy:: too_many_lines) ]
159
159
fn get_text_info ( & self ) -> Vec < Line > {
160
160
self . data . as_ref ( ) . map_or_else ( Vec :: new, |data| {
161
161
let mut res = vec ! [
You can’t perform that action at this time.
0 commit comments