40119cb041
See the class org.ini4j.Ini used in intelliJ (derived kt class MyIni) It contains inherited remove override with the following signature: String remove(Object sectionName, Object optionName) While also, from kotlin.collections.MutableMap we inherit boolean remove(Object, Object) And we should treat them as different methods to have correct signatures in resulting class scope
5 lines
145 B
Java
Vendored
5 lines
145 B
Java
Vendored
package test;
|
|
public abstract class B implements java.util.Map<String, String>, A {
|
|
public String remove(Object x, Object y) { return x; }
|
|
}
|