On Friday, March 22, 2019 at 12:57:49 PM UTC-4, [email protected] wrote: > > Greetings, > > I need to update really old Objective-C code dealing with Protobufs. It > references Builders all over the place. However source files generated by > protoc v 3.7.0 don't have any Builders. > Is there any way to force protoc to generate builders or do I need to > update Obj-C code to remove builder references? >
Builders never existed in the code from https://github.com/protocolbuffers/protobuf, so it likely was using a different implementation. For this implementation, the objects are directly mutable, so there is no need for a Builder, just create an instance and use it. TVL -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/protobuf. For more options, visit https://groups.google.com/d/optout.
