Closed vonbirdie closed 9 years ago
We currently allow the empty string, null and * as wildcards however the parameter name has a Nonnull annotation by default through the package-info.java so null is not allowed. Requiring it to be * makes the wildcard more explicit.
null
*
name
Nonnull
package-info.java
We currently allow the empty string,
null
and*
as wildcards however the parametername
has aNonnull
annotation by default through thepackage-info.java
sonull
is not allowed. Requiring it to be*
makes the wildcard more explicit.