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 7f55173 commit e4e62f1Copy full SHA for e4e62f1
byte-buddy-dep/src/test/java/net/bytebuddy/description/annotation/AbstractAnnotationDescriptionTest.java
@@ -785,7 +785,6 @@ public void testIsSupportedOn() throws Exception {
785
for (ElementType elementType : ElementType.values()) {
786
assertThat(describe(first).isSupportedOn(elementType), is(!elementType.name().equals("TYPE_PARAMETER")));
787
}
788
- assertThat(describe(explicitTarget).isSupportedOn((ElementType) null), is(true));
789
assertThat(describe(explicitTarget).isSupportedOn(ElementType.TYPE), is(true));
790
assertThat(describe(explicitTarget).isSupportedOn(ElementType.ANNOTATION_TYPE), is(false));
791
assertThat(describe(explicitTarget).isSupportedOn(ElementType.TYPE.name()), is(true));
0 commit comments