From 0730660cc6761584aadf578104abb3540b3720c4 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 17 Jan 2024 12:34:12 +0000 Subject: [PATCH] Remove unneeded Auth::fqaccount() method. I never ended up using it, preferring Client::our_account_fq(). --- src/auth.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/auth.rs b/src/auth.rs index 8f1a009..4a9215f 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -58,8 +58,4 @@ impl AuthConfig { }?; Ok(auth) } - - pub fn fqaccount(&self) -> String { - self.username.to_owned() + "@" + &self.instance_domain - } } -- 2.30.2