Remove other deprecated method.

bot-api-6.1
Syfaro 2016-01-04 11:19:13 -06:00
parent 80e30d7c19
commit 3dbc5f3892
1 changed files with 0 additions and 9 deletions

View File

@ -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] == '/'