Skip to content

Commit b358584

Browse files
committed
Fix build
1 parent bd234b9 commit b358584

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

internal/hscan/structmap.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ func (s *structSpec) set(tag string, sf *structField) {
3737
s.m[tag] = sf
3838
}
3939

40-
func (s *structSpec) get(tag string) (*structField, bool) {
41-
f, ok := s.m[tag]
42-
return f, ok
43-
}
44-
4540
func newStructSpec(t reflect.Type, fieldTag string) *structSpec {
4641
out := &structSpec{
4742
m: make(map[string]*structField),

0 commit comments

Comments
 (0)