diff options
author | Unknwon <u@gogs.io> | 2015-08-09 12:06:08 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-09 12:06:08 +0800 |
commit | 68b9d78386f74e14841ddc20df110591ac7fba23 (patch) | |
tree | 3324b9e8b8f74999fa639c7c0237f44b391961d0 /modules/avatar | |
parent | 4b43ffc96cf16cd49b5796feca8ad853f3e3a8ee (diff) | |
download | gitea-68b9d78386f74e14841ddc20df110591ac7fba23.tar.gz gitea-68b9d78386f74e14841ddc20df110591ac7fba23.zip |
remove sync.Pool and support go1.2 again
Diffstat (limited to 'modules/avatar')
-rw-r--r-- | modules/avatar/avatar.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/avatar/avatar.go b/modules/avatar/avatar.go index 5aef6e02cd..49a501bf96 100644 --- a/modules/avatar/avatar.go +++ b/modules/avatar/avatar.go @@ -32,9 +32,9 @@ import ( "sync" "time" - "github.com/issue9/identicon" "github.com/nfnt/resize" + "github.com/gogits/gogs/modules/identicon" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/setting" ) |