]> Sergey Matveev's repositories - btrtrc.git/commitdiff
Reorder some imports
authorMatt Joiner <anacrolix@gmail.com>
Fri, 26 Dec 2014 06:17:00 +0000 (17:17 +1100)
committerMatt Joiner <anacrolix@gmail.com>
Fri, 26 Dec 2014 06:17:00 +0000 (17:17 +1100)
cmd/torrent-infohash/main.go
connection_test.go
internal/cmd/bloom-estimate/main.go
internal/cmd/bloom-false-positives/main.go

index d58fc4c33dce6df5154a117725e567321479a064..d79662034677bab62c528cee50af3fc9977a6b7d 100644 (file)
@@ -3,8 +3,9 @@ package main
 import (
        "flag"
        "fmt"
-       "github.com/anacrolix/libtorgo/metainfo"
        "log"
+
+       "github.com/anacrolix/libtorgo/metainfo"
 )
 
 func main() {
index 0b7f8e28940fcedf0b7654567aa2013a027ca2cd..22b76f01c2ecd38ea6733837cc47d7a6c8ec1128 100644 (file)
@@ -1,9 +1,10 @@
 package torrent
 
 import (
-       "bitbucket.org/anacrolix/go.torrent/peer_protocol"
        "testing"
        "time"
+
+       "bitbucket.org/anacrolix/go.torrent/peer_protocol"
 )
 
 func TestCancelRequestOptimized(t *testing.T) {
index e05071e109ee4f2fb5db87c7222db509625cf421..5cdb41c2a1f4c9c205e75f9cc77c7c6d34e55690 100644 (file)
@@ -3,6 +3,7 @@ package main
 import (
        "flag"
        "fmt"
+
        "github.com/willf/bloom"
 )
 
index d25ea17ed2d047ecda551197a8da5bb901754390..0b94480a39bdfc59df025dccb735bf34bd3b3940 100644 (file)
@@ -4,8 +4,9 @@ import (
        "bufio"
        "flag"
        "fmt"
-       "github.com/willf/bloom"
        "os"
+
+       "github.com/willf/bloom"
 )
 
 func main() {