Hi,

I am new to Protobuf, and recently I found out that the java generated code 
by protobuf has underscore by the end of each field names.

For example,

protobuf message file look like this:

message DummyMessage [
    
    string some_id = 1;
    bool is_active = 2;
}

The generated java code is like this:

Class DummyMessage {

    String someId_;
    boolean isActive_;

}

Is there any way to get rid of the underscore of each field?

Thanks,


-- 
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.

Reply via email to