remove not in use statements

This commit is contained in:
Tony Wang 2018-10-14 17:55:46 +08:00
parent dbc3002d02
commit c86a5da722
No known key found for this signature in database
GPG key ID: 624D973D837983DF

View file

@ -62,11 +62,6 @@ func (srp *sampleRecordProcessor) Shutdown(reason string) error {
}
func main() {
f, err := os.Create("/tmp/kcl_stderr")
if err != nil {
panic(err)
}
defer f.Close()
kclProcess := kcl.New(os.Stdin, os.Stdout, os.Stderr, newSampleRecordProcessor())
kclProcess.Run()
}