We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d86040b commit 0bc0178Copy full SHA for 0bc0178
byte-buddy-dep/src/main/java/net/bytebuddy/build/Plugin.java
@@ -31,6 +31,7 @@
31
import net.bytebuddy.utility.StreamDrainer;
32
import net.bytebuddy.utility.nullability.AlwaysNull;
33
import net.bytebuddy.utility.nullability.MaybeNull;
34
+import net.bytebuddy.utility.nullability.UnknownNull;
35
36
import java.io.*;
37
import java.lang.annotation.*;
@@ -3346,7 +3347,7 @@ protected MultiReleaseVersionMatcher(ClassFileVersion classFileVersion) {
3346
3347
/**
3348
* {@inheritDoc}
3349
*/
- public boolean matches(Element target) {
3350
+ public boolean matches(@UnknownNull Element target) {
3351
String name = target.getName();
3352
if (name.startsWith("/")) {
3353
name = name.substring(1);
0 commit comments