Skip to content

Commit

Permalink
tools/stubmaker: fix dropped error (#22112)
Browse files Browse the repository at this point in the history
  • Loading branch information
alrs authored Jul 28, 2023
1 parent 032dd8f commit 194e8cd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/stubmaker/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ func main() {
}

inputLines, err := readLines(bytes.NewBuffer(b))
if err != nil {
fatal(err)
}
funcs := getFuncs(inputLines)
if needed, err := isStubNeeded(funcs); err != nil {
fatal(err)
Expand Down

0 comments on commit 194e8cd

Please sign in to comment.