We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43f0b28 commit e2094b0Copy full SHA for e2094b0
src/main/java/org/mockito/internal/util/KotlinInlineClassUtil.java
@@ -40,7 +40,7 @@ public static boolean isInlineClassWithAssignableUnderlyingType(
40
// If we don't make this check, then we would potentially pass a mock of inline type A
41
// into a method
42
// that accepts inline type B.
43
- inlineClass.getDeclaredMethod("box-impl", underlyingType);
+ Object ignored = inlineClass.getDeclaredMethod("box-impl", underlyingType);
44
return true;
45
} catch (NoSuchMethodException e) {
46
return false;
0 commit comments