Remove unused FederationServer.__str__ override (#15690)

Signed-off-by: Sean Quah <seanq@matrix.org>
This commit is contained in:
Sean Quah 2023-05-30 14:37:39 +01:00 committed by GitHub
parent 42786d8a47
commit 5d8c659373
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

1
changelog.d/15690.misc Normal file
View file

@ -0,0 +1 @@
Remove some unused code.

View file

@ -1291,9 +1291,6 @@ class FederationServer(FederationBase):
return
lock = new_lock
def __str__(self) -> str:
return "<ReplicationLayer(%s)>" % self.server_name
async def exchange_third_party_invite(
self, sender_user_id: str, target_user_id: str, room_id: str, signed: Dict
) -> None: