Uploaded image for project: 'mdsal'
  1. mdsal
  2. MDSAL-678

Incorrect @NonNull with binary requireFoo()

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: High High
    • 7.0.10, 8.0.6
    • 8.0.0, 7.0.9
    • Binding codegen

      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.

            rovarga Robert Varga
            rovarga Robert Varga
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: