chiark / gitweb /
Remove unneeded Auth::fqaccount() method.
authorSimon Tatham <anakin@pobox.com>
Wed, 17 Jan 2024 12:34:12 +0000 (12:34 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 17 Jan 2024 12:34:12 +0000 (12:34 +0000)
I never ended up using it, preferring Client::our_account_fq().

src/auth.rs

index 8f1a009e0a09e6b7827fe78d68944fe5538b27c2..4a9215f40b5bec4f6dce976494d66ada6ae3b9ca 100644 (file)
@@ -58,8 +58,4 @@ impl AuthConfig {
         }?;
         Ok(auth)
     }
-
-    pub fn fqaccount(&self) -> String {
-        self.username.to_owned() + "@" + &self.instance_domain
-    }
 }