From 748282a14a0f5c71a80ec4deefd4a4efb7ad8741 Mon Sep 17 00:00:00 2001 From: Gabriel Guzman Date: Tue, 16 Sep 2014 18:17:55 -0400 Subject: [PATCH] Remove a declared variable that isn't used. So the library will compile again. --- xmpp.go | 1 - 1 file changed, 1 deletion(-) diff --git a/xmpp.go b/xmpp.go index a403f3a..08749e1 100644 --- a/xmpp.go +++ b/xmpp.go @@ -249,7 +249,6 @@ func (c *Client) init(o *Options) error { if len(a) != 2 { return errors.New("xmpp: invalid username (want user@domain): " + o.User) } - user := a[0] domain := a[1] // Declare intent to be a jabber client.