Skip to content
Snippets Groups Projects
Commit 22bcae07 authored by Murat Kabilov's avatar Murat Kabilov
Browse files

skip unused variable

parent 6e5d7abc
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ func decoderFrom(field reflect.Value) (d Decoder) {
d, ok := field.Interface().(Decoder)
if !ok && field.CanAddr() {
d, ok = field.Addr().Interface().(Decoder)
d, _ = field.Addr().Interface().(Decoder)
}
return d
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment