Skip to content

Commit e2094b0

Browse files
committed
Fix compilation error
1 parent 43f0b28 commit e2094b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/mockito/internal/util/KotlinInlineClassUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static boolean isInlineClassWithAssignableUnderlyingType(
4040
// If we don't make this check, then we would potentially pass a mock of inline type A
4141
// into a method
4242
// that accepts inline type B.
43-
inlineClass.getDeclaredMethod("box-impl", underlyingType);
43+
Object ignored = inlineClass.getDeclaredMethod("box-impl", underlyingType);
4444
return true;
4545
} catch (NoSuchMethodException e) {
4646
return false;

0 commit comments

Comments
 (0)