Remove async_trait from the only trait that allows it now

This commit is contained in:
Kirill Bulatov 2023-12-28 23:45:30 +02:00
parent e932f4cf47
commit ce8cc50ae5
2 changed files with 0 additions and 4 deletions

View file

@ -23,7 +23,6 @@ pub struct Branch {
pub unix_timestamp: Option<i64>, pub unix_timestamp: Option<i64>,
} }
#[async_trait::async_trait]
pub trait GitRepository: Send { pub trait GitRepository: Send {
fn reload_index(&self); fn reload_index(&self);
fn load_index_text(&self, relative_file_path: &Path) -> Option<String>; fn load_index_text(&self, relative_file_path: &Path) -> Option<String>;
@ -248,7 +247,6 @@ impl FakeGitRepository {
} }
} }
#[async_trait::async_trait]
impl GitRepository for FakeGitRepository { impl GitRepository for FakeGitRepository {
fn reload_index(&self) {} fn reload_index(&self) {}

View file

@ -23,7 +23,6 @@ pub struct Branch {
pub unix_timestamp: Option<i64>, pub unix_timestamp: Option<i64>,
} }
#[async_trait::async_trait]
pub trait GitRepository: Send { pub trait GitRepository: Send {
fn reload_index(&self); fn reload_index(&self);
fn load_index_text(&self, relative_file_path: &Path) -> Option<String>; fn load_index_text(&self, relative_file_path: &Path) -> Option<String>;
@ -248,7 +247,6 @@ impl FakeGitRepository {
} }
} }
#[async_trait::async_trait]
impl GitRepository for FakeGitRepository { impl GitRepository for FakeGitRepository {
fn reload_index(&self) {} fn reload_index(&self) {}