all: gofmt

Run standard gofmt command on project root.

- go version go1.10.3 darwin/amd64

Signed-off-by: ia <isaac.ardis@gmail.com>
This commit is contained in:
ia 2018-06-17 00:47:12 +02:00 committed by Matt Joiner
parent cadbacb956
commit fd7b23e527
1 changed files with 3 additions and 3 deletions

View File

@ -226,9 +226,9 @@ func getDictField(dict reflect.Value, key string) dictField {
})
}
return dictField{
Value: dict.FieldByIndex(sf.Index),
Ok: true,
Set: func() {},
Value: dict.FieldByIndex(sf.Index),
Ok: true,
Set: func() {},
IgnoreUnmarshalTypeError: getTag(sf.Tag).IgnoreUnmarshalTypeError(),
}
default: