gofmt
authorChris Jones <christian.jones@sri.com>
Sun, 15 Sep 2013 12:31:59 -0600
changeset 145 21a390dd3506
parent 144 9d7fdb1d2fc1
child 146 aa9a0ae8f875
gofmt
xmpp/layer1.go
xmpp/layer2.go
xmpp/layer3.go
xmpp/sasl.go
--- a/xmpp/layer1.go	Sun Sep 15 12:31:37 2013 -0600
+++ b/xmpp/layer1.go	Sun Sep 15 12:31:59 2013 -0600
@@ -5,8 +5,8 @@
 
 import (
 	"io"
+	"net"
 	"time"
-	"net"
 )
 
 func (cl *Client) readTransport(w io.WriteCloser) {
--- a/xmpp/layer2.go	Sun Sep 15 12:31:37 2013 -0600
+++ b/xmpp/layer2.go	Sun Sep 15 12:31:59 2013 -0600
@@ -4,10 +4,10 @@
 package xmpp
 
 import (
+	"encoding/xml"
+	"fmt"
 	"io"
 	"reflect"
-	"encoding/xml"
-	"fmt"
 	"strings"
 )
 
--- a/xmpp/layer3.go	Sun Sep 15 12:31:37 2013 -0600
+++ b/xmpp/layer3.go	Sun Sep 15 12:31:59 2013 -0600
@@ -4,8 +4,8 @@
 package xmpp
 
 import (
+	"crypto/tls"
 	"encoding/xml"
-	"crypto/tls"
 	"time"
 )
 
--- a/xmpp/sasl.go	Sun Sep 15 12:31:37 2013 -0600
+++ b/xmpp/sasl.go	Sun Sep 15 12:31:59 2013 -0600
@@ -3,14 +3,14 @@
 package xmpp
 
 import (
-	"strings"
+	"crypto/md5"
+	"crypto/rand"
+	"encoding/base64"
 	"encoding/xml"
-	"encoding/base64"
 	"fmt"
 	"math/big"
-	"crypto/rand"
 	"regexp"
-	"crypto/md5"
+	"strings"
 )
 
 // BUG(cjyar): Doesn't implement TLS/SASL EXTERNAL.