mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-10 20:41:59 +00:00
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
This commit is contained in:
parent
12980dd88f
commit
09760340ca
1 changed files with 0 additions and 3 deletions
|
@ -371,7 +371,6 @@ impl Platform for LinuxPlatform {
|
|||
}
|
||||
}
|
||||
|
||||
//todo!(linux)
|
||||
fn write_credentials(&self, url: &str, username: &str, password: &[u8]) -> Task<Result<()>> {
|
||||
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<Result<Option<(String, Vec<u8>)>>> {
|
||||
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<Result<()>> {
|
||||
let url = url.to_string();
|
||||
self.background_executor().spawn(async move {
|
||||
|
|
Loading…
Reference in a new issue