Drop some &mut bounds where & would have sufficed

This commit is contained in:
Blaž Hrastnik 2021-09-02 10:49:23 +09:00
parent 800d79b584
commit 10b690b5bd
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ pub fn callback<F: Future<Output = anyhow::Result<Callback>> + Send + 'static>(
}
pub fn handle_callback(
&mut self,
&self,
editor: &mut Editor,
compositor: &mut Compositor,
call: anyhow::Result<Option<Callback>>,
@ -84,7 +84,7 @@ pub async fn next_job(&mut self) -> Option<anyhow::Result<Option<Callback>>> {
}
}
pub fn add(&mut self, j: Job) {
pub fn add(&self, j: Job) {
if j.wait {
self.wait_futures.push(j.future);
} else {

View File

@ -649,7 +649,7 @@ fn apply_impl(&mut self, transaction: &Transaction, view_id: ViewId) -> bool {
// }
// emit lsp notification
if let Some(language_server) = &self.language_server {
if let Some(language_server) = self.language_server() {
let notify = language_server.text_document_did_change(
self.versioned_identifier(),
&old_doc,