Details
-
Bug
-
Status: Resolved
-
High
-
Resolution: Done
-
8.0.0, 7.0.9
Description
Code generator ends up generating this method:
default @NonNull byte[] requireSpeakerEntityIdValue() {
// ...
}
The problem here is that @NonNull placement, as that is a TYPE_USE annotation and therefore needs to look like this:
default byte @NonNull[] requireSpeakerEntityIdValue() {
// ...
}
find the offender and fix it up.
Attachments
Issue Links
- relates to
-
MDSAL-602 Add non-null getters for leaf objects
-
- Resolved
-