aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/99designs/gqlgen/codegen/type.go
diff options
context:
space:
mode:
authorAmine Hilaly <hilalyamine@gmail.com>2019-08-17 00:48:08 +0200
committerAmine Hilaly <hilalyamine@gmail.com>2019-08-17 00:48:08 +0200
commitd571deef57b682f92e71f9374c2c59893db811af (patch)
treeb17be26cfd358b1518010c9d7073fdbf0caa1561 /vendor/github.com/99designs/gqlgen/codegen/type.go
parenta89355e7fbcaaa5efb07d43c1f19a4be2e2c1537 (diff)
downloadgit-bug-d571deef57b682f92e71f9374c2c59893db811af.tar.gz
vendor: upgrade github.com/99designs/gqlgen to v0.9.2
Diffstat (limited to 'vendor/github.com/99designs/gqlgen/codegen/type.go')
-rw-r--r--vendor/github.com/99designs/gqlgen/codegen/type.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/99designs/gqlgen/codegen/type.go b/vendor/github.com/99designs/gqlgen/codegen/type.go
index e0083732..4a14454c 100644
--- a/vendor/github.com/99designs/gqlgen/codegen/type.go
+++ b/vendor/github.com/99designs/gqlgen/codegen/type.go
@@ -4,7 +4,7 @@ import (
"github.com/99designs/gqlgen/codegen/config"
)
-func (b *builder) buildTypes() (map[string]*config.TypeReference, error) {
+func (b *builder) buildTypes() map[string]*config.TypeReference {
ret := map[string]*config.TypeReference{}
for _, ref := range b.Binder.References {
@@ -14,5 +14,5 @@ func (b *builder) buildTypes() (map[string]*config.TypeReference, error) {
ref = ref.Elem()
}
}
- return ret, nil
+ return ret
}