File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed
components/commit_details Expand file tree Collapse file tree 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> {
3838 . get_one :: < String > ( "directory" )
3939 . map_or_else ( || PathBuf :: from ( "." ) , PathBuf :: from) ;
4040
41- #[ allow( clippy:: option_if_let_else) ]
4241 let repo_path = if let Some ( w) = workdir {
4342 RepoPath :: Workdir { gitdir, workdir : w }
4443 } else {
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ impl CompareDetailsComponent {
5858 } ) ;
5959 }
6060
61- #[ allow( unstable_name_collisions) ]
6261 fn get_commit_text ( & self , data : & CommitDetails ) -> Vec < Line > {
6362 let mut res = vec ! [
6463 Line :: from( vec![
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ impl DetailsComponent {
155155 . collect ( )
156156 }
157157
158- #[ allow( unstable_name_collisions , clippy:: too_many_lines) ]
158+ #[ allow( clippy:: too_many_lines) ]
159159 fn get_text_info ( & self ) -> Vec < Line > {
160160 self . data . as_ref ( ) . map_or_else ( Vec :: new, |data| {
161161 let mut res = vec ! [
You can’t perform that action at this time.
0 commit comments