Ignoring SAM adapters when checking for unimplemented methods or methods to override.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package foo;
|
||||
|
||||
public interface A {
|
||||
void foo(Runnable r);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package foo;
|
||||
|
||||
public interface B extends A {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package foo
|
||||
|
||||
class Impl: B {
|
||||
<caret>
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package foo
|
||||
|
||||
class Impl: B {
|
||||
|
||||
public override fun foo(r: Runnable?) {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user