mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
detect generated parameter name ignoring prefixes (e.g. in case of overriding library) (IDEA-144961)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
interface IntFunction<T> {
|
||||
int apply(T t);
|
||||
}
|
||||
|
||||
class A implements IntFunction<String> {
|
||||
public int apply(String inS) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
interface IntFunction<T> {
|
||||
int apply(T t);
|
||||
}
|
||||
|
||||
class A implements IntFunction<String> {
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user