From: Simon Tatham Date: Wed, 17 Jan 2024 12:34:12 +0000 (+0000) Subject: Remove unneeded Auth::fqaccount() method. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=0730660cc6761584aadf578104abb3540b3720c4;p=mastodonochrome.git Remove unneeded Auth::fqaccount() method. I never ended up using it, preferring Client::our_account_fq(). --- 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 - } }