From 70427daed276b9c8b81457528732d5004ecda710 Mon Sep 17 00:00:00 2001 From: Thorsten Ball Date: Fri, 19 Apr 2024 18:34:38 +0200 Subject: [PATCH] Remove unused field on CommitDetails (#10783) Release Notes: - N/A --- crates/editor/src/git/blame.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/editor/src/git/blame.rs b/crates/editor/src/git/blame.rs index e686e083c97144ae6178aa74ee998661a7f8e272..b69caba35dd5e10248ea85b1e555daf287732709 100644 --- a/crates/editor/src/git/blame.rs +++ b/crates/editor/src/git/blame.rs @@ -75,7 +75,6 @@ pub struct CommitDetails { pub message: String, pub parsed_message: ParsedMarkdown, pub permalink: Option, - pub avatar_url: Option, pub remote: Option, } @@ -446,7 +445,6 @@ async fn parse_commit_messages( parsed_message, permalink, remote, - avatar_url: None, }, ); }