From 3dbc5f3892080163fb6ca95887c9c07ed7aa2149 Mon Sep 17 00:00:00 2001 From: Syfaro Date: Mon, 4 Jan 2016 11:19:13 -0600 Subject: [PATCH] Remove other deprecated method. --- types.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/types.go b/types.go index 18ba5db..b8aeffe 100644 --- a/types.go +++ b/types.go @@ -123,15 +123,6 @@ func (m *Message) Time() time.Time { return time.Unix(int64(m.Date), 0) } -// IsGroup returns if the message was sent to a group. -// -// Deprecated in favor of Chat.IsGroup. -func (m *Message) IsGroup() bool { - log.Println("Message.IsGroup is deprecated.") - log.Println("Please use Chat.IsGroup instead.") - return m.Chat.IsGroup() -} - // IsCommand returns true if message starts with '/'. func (m *Message) IsCommand() bool { return m.Text != "" && m.Text[0] == '/'