Skip to content

Commit 54948d8

Browse files
committed
Resolved compiler warnings
1 parent bed763c commit 54948d8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/test/java/org/apache/ibatis/reflection/TypeParameterResolverTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -578,6 +578,7 @@ public Entry<String, Integer> entry() {
578578
@Test
579579
void shouldWildcardTypeBeEqual() throws Exception {
580580
class WildcardTypeTester {
581+
@SuppressWarnings("unused")
581582
public List<? extends Serializable> foo() {
582583
return null;
583584
}
@@ -600,6 +601,7 @@ public List<? extends Serializable> foo() {
600601
@Test
601602
void shouldGenericArrayTypeBeEqual() throws Exception {
602603
class GenericArrayTypeTester {
604+
@SuppressWarnings("unused")
603605
public List<String>[] foo() {
604606
return null;
605607
}

0 commit comments

Comments
 (0)