From 7e1786e8cfbb8dd214da310cd9243524e7ecf671 Mon Sep 17 00:00:00 2001 From: Monet Lee Date: Fri, 23 Aug 2024 17:43:19 +0800 Subject: [PATCH] remove null interface. --- internal/rpc/conversation/conversaion.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/internal/rpc/conversation/conversaion.go b/internal/rpc/conversation/conversaion.go index fc6574e54..cb6546f9b 100644 --- a/internal/rpc/conversation/conversaion.go +++ b/internal/rpc/conversation/conversaion.go @@ -711,9 +711,3 @@ func (c *conversationServer) GetConversationsNeedDestructMsgs(ctx context.Contex return &pbconversation.GetConversationsNeedDestructMsgsResp{Conversations: convert.ConversationsDB2Pb(temp)}, nil } - -// SetConversationMinSeq implements conversation.ConversationServer. -func (c *conversationServer) SetConversationMinSeq(context.Context, *pbconversation.SetConversationMinSeqReq) (*pbconversation.SetConversationMinSeqResp, error) { - _ = c.config - panic("unimplemented") -}