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's a command (because it resides in the mixin_commands.proto file). As such it has its first field required, but since it's of int32 type it would always have some value. So, we have nothing to validate about this type.
The code of validation generated for this type is this:
I have the following type (it's a part of test data in
core-java
project):It's a command (because it resides in the
mixin_commands.proto
file). As such it has its first field required, but since it's ofint32
type it would always have some value. So, we have nothing to validate about this type.The code of validation generated for this type is this:
It does nothing useful because the array created would be always empty, and there's no code added in the insertion point.
It would be good to have just this instead:
The text was updated successfully, but these errors were encountered: