adamw7 / tools

code generation and data oriented tools
MIT License
5 stars 1 forks source link

Proto containing only one optional field has no default constructor #35

Closed adamw7 closed 1 year ago

adamw7 commented 1 year ago

syntax = "proto2";

package test2;

option java_multiple_files = true; option java_package = "io.github.adamw7.tools.code.test2";

message User { optional string value = 1; }

adamw7 commented 1 year ago

Fixed