]> Sergey Matveev's repositories - btrtrc.git/commitdiff
More sortimports
authorMatt Joiner <anacrolix@gmail.com>
Sat, 7 Jul 2018 01:40:06 +0000 (11:40 +1000)
committerMatt Joiner <anacrolix@gmail.com>
Sat, 7 Jul 2018 01:40:06 +0000 (11:40 +1000)
cmd/torrent/main.go
cmd/tracker-announce/main.go
mse/mse.go
peer_protocol/handshake.go

index e97ce9d732225773dfae2f45365201c58ce9bc28..f9067a79905dd1fe2f89e14e0f92f8c7b89a289c 100644 (file)
@@ -11,8 +11,6 @@ import (
        "strings"
        "time"
 
-       "github.com/anacrolix/torrent/iplist"
-
        "github.com/anacrolix/envpprof"
        "github.com/anacrolix/tagflag"
        "github.com/dustin/go-humanize"
@@ -20,6 +18,7 @@ import (
        "golang.org/x/time/rate"
 
        "github.com/anacrolix/torrent"
+       "github.com/anacrolix/torrent/iplist"
        "github.com/anacrolix/torrent/metainfo"
        "github.com/anacrolix/torrent/storage"
 )
index 3cdffa297f8e8563e460f0fb59ec826e6bd3f310..76cfab3858fdee618bc765c45572e865565f693d 100644 (file)
@@ -8,10 +8,11 @@ import (
        "sync"
 
        "github.com/anacrolix/tagflag"
+       "github.com/davecgh/go-spew/spew"
+
        "github.com/anacrolix/torrent"
        "github.com/anacrolix/torrent/metainfo"
        "github.com/anacrolix/torrent/tracker"
-       "github.com/davecgh/go-spew/spew"
 )
 
 func argSpec(arg string) (ts *torrent.TorrentSpec, err error) {
index b10090c2bb5be2692e7a436b18af2dc54d5830ce..d9b87803182726df3ce0d841e287ac8c3539f6ee 100644 (file)
@@ -19,7 +19,6 @@ import (
        "sync"
 
        "github.com/anacrolix/missinggo/perf"
-
        "github.com/bradfitz/iter"
 )
 
index fedeaad19bcf59063867da1a36998cd86c23ba6a..e3389171d84a4c44ea87f8d7700f4d2233a41b0b 100644 (file)
@@ -6,6 +6,7 @@ import (
        "io"
 
        "github.com/anacrolix/missinggo"
+
        "github.com/anacrolix/torrent/metainfo"
 )