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
-
| # | Subject | Branch | Project | Status | CR | V |
|---|---|---|---|---|---|---|
| 97669,1 | Properly annotate byte[] | master | mdsal | Status: MERGED | +2 | +1 |
| 97677,1 | Properly annotate byte[] | 7.0.x | mdsal | Status: MERGED | +2 | +1 |