v0.0.536 revert bfcodegen changes
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m24s

This commit is contained in:
2024-10-22 09:57:06 +02:00
parent 5a8d7110e4
commit 9b9a79b4ad
4 changed files with 8 additions and 17 deletions

View File

@@ -69,11 +69,8 @@ func (e {{.EnumTypeName}}) ValuesMeta() []enums.EnumMetaValue {
}
{{if $hasStr}}
func (e *{{.EnumTypeName}}) String() string {
if e == nil {
return "<nil>"
}
return string(*e)
func (e {{.EnumTypeName}}) String() string {
return string(e)
}
{{end}}