Remove a stray debugging statement.

This commit is contained in:
Greg 2020-06-25 13:18:03 -04:00
parent 8b3a956bbe
commit 1704be1cbc
1 changed files with 1 additions and 1 deletions

View File

@ -1388,7 +1388,7 @@ func (w *Wrapper) MethodFromSig(sig, class string) *Method {
}
sig = sig[1:]
rem, n := types.MethodSignature(sig, types.NewNode("AST"))
fmt.Println(n.String())
if Debug { fmt.Println(n.String()) }
if len(rem) > 0 {
fmt.Printf("Failed to parse method signature %s (%s)\n", sig, rem)
os.Exit(-1)