chore(store): Dont panic on get store

This commit is contained in:
Guilhem Fanton 2018-08-20 17:41:58 +02:00
parent 9938cbdf5a
commit 8a8c54b5b4

View File

@ -176,7 +176,7 @@ func getStore(s string) interface{} {
return v return v
} }
panic(fmt.Sprintf("No key named '%s' found", s)) return false
} }
func InitPathMap(file *descriptor.FileDescriptorProto) { func InitPathMap(file *descriptor.FileDescriptorProto) {