From 09760340ca5f2fede3546c4acd6b0274cc3e05c0 Mon Sep 17 00:00:00 2001 From: Christian Bergschneider Date: Mon, 4 Mar 2024 16:57:56 +0000 Subject: [PATCH] linux: remove todo for credential implementation (#8834) As commented [here](https://github.com/zed-industries/zed/pull/8035#issuecomment-1976894590), this is already done. Release Notes: - N/A --- crates/gpui/src/platform/linux/platform.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/gpui/src/platform/linux/platform.rs b/crates/gpui/src/platform/linux/platform.rs index 016282b444..414c1507dc 100644 --- a/crates/gpui/src/platform/linux/platform.rs +++ b/crates/gpui/src/platform/linux/platform.rs @@ -371,7 +371,6 @@ impl Platform for LinuxPlatform { } } - //todo!(linux) fn write_credentials(&self, url: &str, username: &str, password: &[u8]) -> Task> { let url = url.to_string(); let username = username.to_string(); @@ -393,7 +392,6 @@ impl Platform for LinuxPlatform { //todo!(linux): add trait methods for accessing the primary selection - //todo!(linux) fn read_credentials(&self, url: &str) -> Task)>>> { let url = url.to_string(); self.background_executor().spawn(async move { @@ -421,7 +419,6 @@ impl Platform for LinuxPlatform { }) } - //todo!(linux) fn delete_credentials(&self, url: &str) -> Task> { let url = url.to_string(); self.background_executor().spawn(async move {