detect generated parameter name ignoring prefixes (e.g. in case of overriding library) (IDEA-144961)

This commit is contained in:
Anna Kozlova
2015-09-10 15:55:08 +03:00
parent a811f9668e
commit 837f0c8324
5 changed files with 39 additions and 9 deletions
@@ -0,0 +1,9 @@
interface IntFunction<T> {
int apply(T t);
}
class A implements IntFunction<String> {
public int apply(String inS) {
return 0;
}
}
@@ -0,0 +1,7 @@
interface IntFunction<T> {
int apply(T t);
}
class A implements IntFunction<String> {
<caret>
}