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
This is another example of us not using proto best practices (similar to #284 and #285). Camel case proto fields are generated as fully lowercase in protokt. Full example here
@GeneratedMessage("helloworld.HelloRequest")
public class HelloRequest private constructor(
@GeneratedProperty(1)
public val message: String,
@GeneratedProperty(2)
public val messageTwo: String,
@GeneratedProperty(3)
public val messagethree: String,
public val unknownFields: UnknownFieldSet = UnknownFieldSet.empty()
)
It is maybe not a bug per se, but it is inconsistent with how protobuf-java and protobuf-kotlin generates code so I thought I'd report it.
The text was updated successfully, but these errors were encountered:
This is another example of us not using proto best practices (similar to #284 and #285). Camel case proto fields are generated as fully lowercase in protokt. Full example here
generates to
It is maybe not a bug per se, but it is inconsistent with how
protobuf-java
andprotobuf-kotlin
generates code so I thought I'd report it.The text was updated successfully, but these errors were encountered: