Remove warning when JSON contains null value (#3359)

This commit is contained in:
Daniel Nelson
2017-10-19 16:25:58 -07:00
committed by GitHub
parent 46d489c632
commit 69591e1fab

View File

@@ -159,8 +159,6 @@ func (f *JSONFlattener) FullFlattenJSON(
return nil
}
case nil:
// ignored types
fmt.Println("json parser ignoring " + fieldname)
return nil
default:
return fmt.Errorf("JSON Flattener: got unexpected type %T with value %v (%s)",