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

@@ -21,11 +21,8 @@ func (i {{.Name}}) MarshalBSONValue() (bsontype.Type, []byte, error) {
}
}
func (i *{{.Name}}) String() string {
if i == nil {
return "<nil>"
}
return string(*i)
func (i {{.Name}}) String() string {
return string(i)
}
func (i {{.Name}}) ObjID() (primitive.ObjectID, error) {