You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it generates map entries like case class (key: Option[String], value: Option[Int]), but the type of map is Map[String, Int]. I believe that options are not needed here.
The text was updated successfully, but these errors were encountered:
It seems to be possible according to the docs (https://developers.google.com/protocol-buffers/docs/proto?hl=en#oneof), however codegen generated invalid messages.
for simple message like
it generates map entries like case class
(key: Option[String], value: Option[Int])
, but the type of map isMap[String, Int]
. I believe that options are not needed here.The text was updated successfully, but these errors were encountered: